Roo-Code/apps/web-evals/next.config.ts
2025-06-04 09:32:27 -07:00

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