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
    }
  }
}

 

posted on 2023-10-17 17:52  飘杨......  阅读(1632)  评论(0)    收藏  举报