123456789101112131415161718192021222324 |
- // vue.config.js 配置说明
- //官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions
- // 这里只列一部分,具体配置参考文档
- module.exports = {
- publicPath:'./',
- devServer: {
- host: '0.0.0.0',
- https: true,
- open: true,
- proxy:{
- ["/dev-api"]:{
- // target:'https://edu.jiaxintech.com',
- target:'https://edutest.jlccta.com',
- changeOrigin:true,
- ws: false,
- pathRewrite: {
- ['^' + "/dev-api"]: '/prod-api'
- }
- }
- }
- },
- }
|