vue 3 项目引入 element 3报错?

项目报错,应该怎么修改?

 error  in ../node_modules/element-plus/lib/theme-chalk/index.css

Syntax Error: Error: No PostCSS Config found in: D:\myproject\vue\node_modules\element-plus\lib\theme-chalk
//创建 postcss.config.js
// touch postcss.config.js

// postcss.config.js
module.exports = {
    plugins: [
        // 配置 Autoprefixer 插件
        require('autoprefixer')({
            // 游览器最近的两个版本
            'overrideBrowserslist': ['last 5 versions']
        })
    ],
};
阅读 2.8k
推荐问题