在Next.JS应用中,我将样式表导入_app.js
中,如下所示:
import '../public/css/Index.css';
Index.css
包含以下内容:
.index-container {
margin: 20px auto 0;
}
我该如何解决错误消息:
./ src / public / css / Index.css (./node_modules/css-loader/dist/cjs.js??ref--5-oneOf-5-1!./node_modules/next/dist/compiled/postcss-loader??__nextjs_postcss!./src/public/ css / Index.css) 警告
问候,时间旅行家。我们正处于无前缀的黄金时代 CSS,样式表不再需要使用Autoprefixer。
答案 0 :(得分:1)
可以通过以下代码package.json
解决您的问题:
"browserslist": [">0.3%", "not ie 11", "not dead", "not op_mini all"]
答案 1 :(得分:1)
我必须按如下方式更改生产和开发项目,这奏效了。
"browserslist": {
"production": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"development": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
},
答案 2 :(得分:0)
这是一个问题,因为browserslist
与postcss-preset-env
与v9.4.4
的捆绑版本之间不兼容。
更新为v9.5.0
应该可以解决。
答案 3 :(得分:0)
更新所有已安装的软件包解决了问题。