vue打包生产环境样式丢失解决
一、概述
把自己打包的vue小案例打包,然后发布到生产环境。发布到生产环境访问后发现样式丢失。(ps:测试环境正常的)
二、解决办法
找到项目中的vue.config.js把extract的值改为false
module.exports = { css: { extract: false, loaderOptions: { stylus: { 'resolve url': true, 'import': [ './src/theme' ] } } }, pluginOptions: { 'cube-ui': { postCompile: true, theme: true } } }
浙公网安备 33010602011771号