我是nextjs typescript的新手,我正在尝试使用nextjs typescript中的next.config.js进行自定义配置,例如
const path = require('path')
module.exports = {
sassOptions: {
includePaths: [path.join(__dirname, 'styles')],
},
}
我已在package.json旁边创建了一个next.config.js文件,但发现next.config.js不起作用,我已浏览了this documentation,并遇到了一个引号
避免使用目标Node.js版本中没有的新JavaScript功能。Webpack、Babel或TypeScript不会解析next.config.js。
我不明白。我的主要问题是我将如何在我的nextjs typescript项目中使用next.config.js?任何建议都将受到高度欢迎。谢谢
1条答案
按热度按时间lb3vh1jj1#
引用的原因是
next.config.js
是在webpack或typescript等其他工具出现之前加载的,其原因应该是显而易见的:您的next.config.js
文件可能包含webpack或typescript的设置,因此必须先加载该文件,然后才能加载这些工具来构建您的应用。