美文网首页
Element-ui 引入css报错

Element-ui 引入css报错

作者: 忘记_3a6a | 来源:发表于2020-03-29 17:46 被阅读0次
 error  in ../node_modules/_element-ui@2.13.0@element-ui/lib/theme-chalk/index.css
Module build failed: Error: No PostCSS Config found in: /Users/caozhipeng/Documents/project/vu
e_project/music/node_modules/_element-ui@2.13.0@element-ui/lib/theme-chalk

解决方案:

在项目根目录新建postcss.config.js文件,并对postcss进行配置:

module.exports = {  
  plugins: {  
    'autoprefixer': {browsers: 'last 5 version'}  
  }  
} 

相关文章

网友评论

      本文标题:Element-ui 引入css报错

      本文链接:https://www.haomeiwen.com/subject/ctpuuhtx.html