项目报错,应该怎么修改?
error in ../node_modules/element-plus/lib/theme-chalk/index.css
Syntax Error: Error: No PostCSS Config found in: D:myprojectvue
ode_moduleselement-pluslibheme-chalk
//创建 postcss.config.js
// touch postcss.config.js
// postcss.config.js
module.exports = {
plugins: [
// 配置 Autoprefixer 插件
require('autoprefixer')({
// 游览器最近的两个版本
'overrideBrowserslist': ['last 5 versions']
})
],
};
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…