1 Star 0 Fork 0

廖祁新/vue-backstage

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 899 Bytes
一键复制 编辑 原始数据 按行查看 历史
廖祁新 提交于 2021-08-09 21:44 . 获取列表
const path = require('path')
module.exports = {
devServer: {
port: 8848, // 设置使用的端口打开
open: true, // 是否自动打开
proxy: { // 配置反向代理
// 服务器反向代理 基于node
'/api': {
target: 'http://rap2api.taobao.org/app/mock/279365', // 反向代理的 原
// target 一定是自己的接口的端口号
changeOrigin: true,
pathRewrite: {
'^/api': '/api'
}
}
}
},
lintOnSave: false,
chainWebpack: (config) => {
config.resolve.alias
.set('@', path.join(__dirname, 'src'))
.set('components', path.join(__dirname, 'src/components'))
.set('views', path.join(__dirname, 'src/views'))
.set('api', path.join(__dirname, 'src/api'))
.set('utils', path.join(__dirname, 'src/utils'))
.set('plugins', path.join(__dirname, 'src/plugins'))
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liao-petal/vue-backstage.git
git@gitee.com:liao-petal/vue-backstage.git
liao-petal
vue-backstage
vue-backstage
master

搜索帮助