加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
代码掏粪工彗星 提交于 2020-12-01 09:36 . init
// 定义resolve方法,用于配置路径别名
const path = require("path");
function resolve(dir) {
return path.join(__dirname, dir);
}
module.exports = {
devServer: {
// host: 'localhost', // can be overwritten by process.env.HOST
// port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
proxy: {
"/hls": {
target: "http://192.168.2.33:8765", // 目标服务器地址,每次修改地址需要重新编译项目
changOrigin: true, // 跨域
ws: true, // 是否代理websockets
pathRewrite: {
"^/hls": "" // 重写请求
}
}
}
},
productionSourceMap: false,
// 链式操作内部配置
chainWebpack: config => {
// 移除 prefetch 插件
config.plugins.delete("prefetch");
},
configureWebpack: {
resolve: {
alias: {
"@": resolve("src"),
"#": resolve("public"),
img: resolve("src/assets/img"),
file: resolve("src/assets/file")
}
}
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化