Files
vue-model-review/vue.config.js
2026-04-27 09:57:00 +08:00

18 lines
278 B
JavaScript

module.exports = {
publicPath: './',
outputDir: 'dist',
assetsDir: 'static',
lintOnSave: false,
productionSourceMap: false,
devServer: {
port: 8080,
open: true,
client: {
overlay: {
warnings: false,
errors: true
}
}
}
}