(实战项目篇)vue3.0系列(vue2.6-cli3.x)自定义配置文件使用
在根目录下创建vue.config.js文件module.exports = {// 选项...// publicPath: '/demo2',devServer: {port: 8001, // 端口号,如果端口号被占用,会自动提升1host: "localhost", //主机名, 127.0.0.1,真机 0.0.0.0...
·
在根目录下创建vue.config.js文件
module.exports = {
// 选项...
// publicPath: '/demo2',
devServer: {
port: 8001, // 端口号,如果端口号被占用,会自动提升1
host: "localhost", //主机名, 127.0.0.1, 真机 0.0.0.0
https: false, //协议
open: true //启动服务时自动打开浏览器访问
},
lintOnSave: false, // 关闭格式检查
outputDir: "dist2", // 打包之后所在目录, 默认值 dist
assetsDir: "assets", // 静态资源打包之后 存放路径 ,(相对于outputDir指定的路径), 默认值 ''
indexPath: "out/index.html", // index.html 主页面打包之后存放的目录(相对于outputDir指定的路径),默认值 index.html
productionSourceMap: false, // 打包时不会生成 .map 文件,加快打包速度
// filenameHashing: false, 打包时,静态文件不会生成hash值
}
更多推荐
已为社区贡献26条内容
所有评论(0)