vue.config.js 244 B

12345678910
  1. /*
  2. * @description: 案例和打包加载不同配置
  3. * @Author: xing.heng
  4. */
  5. const isExample = process.env.VUE_APP_BUILD_TYPE === 'example'
  6. module.exports = isExample
  7. ? require('./vue.config.example')
  8. : require('./vue.config.package')