canyin-project/yb_syt/vue.config.js
2024-11-01 16:07:54 +08:00

16 lines
482 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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,
},
}
;