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