加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 949 Bytes
一键复制 编辑 原始数据 按行查看 历史
zjclxx 提交于 2023-02-07 15:51 . 修改了打包配置
//配置参数
/**
* devServer.proxy
* 如果你的前端应用和后端api服务器没有运行在同一个主机上,你需要在开发环境下将
* api请求进行拦截
*/
const setting = require('./src/settings.js')
const title = setting.title
const path = require('path')
function resolve(dir) {
return path.join(__dirname, dir)
}
const port = 8029 // 端口
module.exports = {
publicPath: './',
outputDir: 'dist',
assetsDir: 'static',
devServer: {
port: port,
proxy: {
'/api': {
target: 'https://gitee.com/api/v5',
ws: false,
changeOrigin: true,
pathRewriter: {//重写路径
'^/api': ''
}
}
}
},
configureWebpack: {
// provide the app's title in webpack's name field, so that
// it can be accessed in index.html to inject the correct title.
name: title,
resolve: {
alias: {
'@': resolve('src')
}
}
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化