Module build failed: Error: No PostCSS Config found in... 出现这样的错误的时候,可以在根目录下 新建一个文件 postcss.config.js
,并对postcss进行配置:
module.exports = {
plugins: {
'autoprefixer': {browsers: 'last 5 version'}
}
}
好了,重新试一下!
Module build failed: Error: No PostCSS Config found in... 出现这样的错误的时候,可以在根目录下 新建一个文件 postcss.config.js
,并对postcss进行配置:
module.exports = {
plugins: {
'autoprefixer': {browsers: 'last 5 version'}
}
}
好了,重新试一下!