mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
webpack: (config) => {
|
|
config.resolve.extensionAlias = { ".js": [".ts", ".tsx", ".js", ".jsx"] }
|
|
return config
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|