加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.43 KB
一键复制 编辑 原始数据 按行查看 历史
滑动变滚动的蜗牛 提交于 2021-04-29 16:46 . 基本完成
// vue.config.js
module.exports = {
publicPath: process.env.NODE_ENV === 'production' ? '/production-sub-path/' : '/',//相对路径
outputDir: 'dist',//构建输出目录
assetsDir: 'assets',//静态资源目录(js,css,img,fonts)
runtimeCompiler: true,
chainWebpack: () => { },
configureWebpack: () => { },
devServer: {
open: false,//使用npm run serve 之后是否自动在浏览器中打开项目
host: 'localhost',//主机名字
port: 8080,//端口号
https: false,//true启动浏览器会给出一些警告
hotOnly: false,//热更新 webpack已经有
proxy: {
// 配置跨域,请求后端接口
'/api': {
target: 'https://www.bilibili.com/index',//源地址
changeOrigin: true,//是否允许跨域
// ws: false,//是否代理websockets
pathRewrite: {
'^/api': ''
}
},
'/hot': {
target: 'https://s.search.bilibili.com/main',
changeOrigin: true,
pathRewrite: {
'^/hot': ''
}
},
'/bbsearch': {
target: 'https://api.bilibili.com',
changeOrigin: true,
pathRewrite: {
'^/bbsearch': ''
}
},
'/defaultsearch': {
target: 'http://api.bilibili.cn',
changeOrigin: true,
pathRewrite: {
'^/defaultsearch': ''
}
},
},
before: app => { }
},
//第三方插件配置
pluginOptions: {}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化