douyin/vue.config.js
2021-07-12 01:06:03 +08:00

13 lines
285 B
JavaScript

// vue.config.js
const isProduction = process.env.NODE_ENV === 'production'
module.exports = {
publicPath: isProduction ? '' : '',
assetsDir: isProduction ? './' : './',
// productionSourceMap: false,
lintOnSave:false, //关闭eslint检查
devServer:{
open: true,
}
}