Files
swiftadmin/plugin/easyflow/sourcecode/vue.config.js
2024-07-13 12:53:20 +08:00

29 lines
616 B
JavaScript

const path = require("path");
module.exports = {
publicPath:'./',
lintOnSave: false,
outputDir: "dist",
// 开发环境显示报错位置 生产环境设置为false减少打包体积
productionSourceMap: true,
devServer: {
port: 88,
disableHostCheck: true,
/*overlay: {
warning: false,
errors: false
}*/
},
pluginOptions: {
"style-resources-loader": {
preProcessor: "less",
patterns: [
// 全局变量路径,不能使用路径别名
path.resolve(__dirname, "./src/assets/theme.less"),
],
},
}
}