如题。运行yarn serve 后,样式无法查看了,都在首相关配置:// postcss.config.jsmodule.exports = {
plugins: {
autoprefixer: {}
}
}// vue.config.js
chainWebpack: config => {
config.module
.rule('vue')
.use('vue-loader')
.loader('vue-loader')
.tap(options => {
options.compilerOptions.preserveWhitespace = true
return options
})
},
添加回答
举报
0/150
提交
取消