canyin-project/yb_syt/vue.config.js

16 lines
482 B
JavaScript
Raw Permalink Normal View History

2024-11-01 16:07:54 +08:00
// const webpack = require('webpack')
module.exports = {
publicPath: "./",
outputDir: "dist",
assetsDir: "static",
lintOnSave: false,
runtimeCompiler: false,
productionSourceMap: false, // 不需要生产环境的设置false可以减小dist文件大小加速构建
devServer: {
open: true,
host: '0.0.0.0', // 匹配本机IP地址(默认是0.0.0.0)
port: 8080, // 开发服务器运行端口号
proxy: null,
},
}
;