16 lines
482 B
JavaScript
16 lines
482 B
JavaScript
|
// 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,
|
|||
|
},
|
|||
|
}
|
|||
|
;
|