错误:不支持通过“next.config.ts”配置Next.js,请将文件替换为“next.config.js”

q9yhzks0  于 2023-06-29  发布在  其他
关注(0)|答案(1)|浏览(118)

我正在建设typescript下一个项目。如果我将这个配置文件保存为next.config.js,我会在tsconfig.json中得到一个警告,说“next.config.ts not found”。所以tsconfig.json在{}上有警告标志。
如果我将扩展名更改为.ts,当我启动项目时,我会得到以下错误:
“错误:不支持通过'next.config.ts'配置Next.js。请将文件替换为'next.config.js'。“
我很困惑,我不知道该怎么办。
ts.config.json

{ 
  "compilerOptions": {
    "target": "es6",
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "baseUrl": ".",
    "paths": {
      "@/*": ["src/*"]
    },
    "skipLibCheck": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "noEmit": true,
    "esModuleInterop": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "sourceMap": true,
    "removeComments": true,

    "jsx": "preserve"
  },
  "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
  "exclude": ["node_modules"]
}

next.config.ts

const path = require("path");
const Dotenv = require("dotenv-webpack");

module.exports = {
  env: {
    AUTH0_NAMESPACE: process.env.AUTH0_NAMESPACE,
    BASE_URL: process.env.BASE_URL,
  },
};
63lcw9qa

63lcw9qa1#

似乎使用next.config.ts会减慢启动速度,因为你必须自己编译它,或者至少next.js repo的成员是这么说的。
有一个问题(更像是一个请求),以支持next.config.ts本机。Here是关于它的问题,它有一些其他开发人员的解决方案

相关问题