web-base-admin-h5/vue.config.js

39 lines
727 B
JavaScript
Raw Normal View History

2025-03-24 09:24:25 +08:00
/*
* @Descripttion:
* @version:
2025-03-24 09:24:25 +08:00
* @Author: 王三华
* @Date: 2023-09-19 10:45:28
*/
module.exports = {
transpileDependencies: ['uview-ui'],
devServer: {
open: true,
2025-05-14 14:37:09 +08:00
port: 8099,
proxy: {
// '/prod-api': {
// target: 'http://localhost:8080',
// changeOrigin: true,
// pathRewrite: {
// '^/prod-api': ''
// }
// },
2025-05-14 14:37:09 +08:00
'/prod-api': {
target: 'http://t-mana.beida666.com',
2025-05-14 14:37:09 +08:00
changeOrigin: true,
// pathRewrite: {
// '^/prod-api': ''
// }
},
},
2025-03-24 09:24:25 +08:00
},
configureWebpack: {
externals: {
zhCN: 'zhCN',
enUS: 'enUS',
zhTC: 'zhTC',
ruRU: 'ruRU',
frFR: 'frFR',
},
},
};