Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
vue.config.js 659 Bytes
Copy Edit Raw Blame History
colaiven authored 2022-08-22 21:42 . 还原路由模式适应gitee page
module.exports = {
publicPath: './',
outputDir: 'dist',
devServer: {
disableHostCheck: true,
port: 8009,
open: true,
overlay: {
warnings: false,
errors: true,
},
proxy: {
'/design/': {
target: 'http://127.0.0.1:6882',
ws: false,
changeOrigin: true,
pathRewrite: {
'/design': '',
},
},
'/file': {
target: 'http://127.0.0.1/',
ws: false,
changeOrigin: true,
},
},
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化