当前位置 : 主页 > 网络编程 > net编程 >

vue.config.js(大力子)

来源:互联网 收集:自由互联 发布时间:2023-09-06
module.exports = { lintOnSave: false, publicPath: "./", outputDir: 'baituan-mobile', // 运行时生成的生产环境构建文件的目录(默认''dist'',构建之前会被清除) devServer: { proxy: { '/talents': { target: 'https://api.


module.exports = {
lintOnSave: false,
publicPath: "./",
outputDir: 'baituan-mobile', // 运行时生成的生产环境构建文件的目录(默认''dist'',构建之前会被清除)
devServer: {
proxy: {
'/talents': {
target: 'https://api.mingyoutang.cn/backend/hrs',
changeOrigin: true,
ws: true,
pathRewrite: {
'^/talents': '/talents'
}
}
}
}
}

vue.config.js(大力子)_vue.config.js


网友评论