next.config.ts 222 B

12345678910
  1. import type { NextConfig } from "next"
  2. const nextConfig: NextConfig = {
  3. webpack: (config) => {
  4. config.resolve.extensionAlias = { ".js": [".ts", ".tsx", ".js", ".jsx"] }
  5. return config
  6. },
  7. }
  8. export default nextConfig