12345678910111213141516 |
- module.exports = {
- publicPath: `/${process.env.VUE_APP_BASE_URL}`,
- devServer: {
- port: '8001',
- proxy: {
- '/files': {
- target: 'http://broadcast.waityou24.cn',
- },
- '/freeAdmin/api/user': {
- target: 'http://127.0.0.1:13001',
- changeOrigin: true,
- ws: false,
- },
- },
- },
- };
|