You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
542 B
13 lines
542 B
module.exports = {
|
|
|
|
publicPath: './', //默认是/,np
|
|
assetsDir: 'static', //存放生成的静态资源js css img fonts
|
|
devServer: {
|
|
port: 8001, //端口号,如果端口号被占用,会自动提升
|
|
host: 'localhost', //主机名 127.0.0.1 真机0.0.0.0
|
|
https: false, //协议
|
|
open: false, //启动服务时自动打开浏览器访问
|
|
},
|
|
lintOnSave:false, //关闭格式检查
|
|
productionSourceMap:false, //打包时不会生成 .map文件,加快打包速度
|
|
}
|