| 12345678910111213141516171819 |
- const path = require('path')
- const fs = require('fs')
- module.exports = {
- publicPath: './',
- devServer: {
- proxy: {
- '/api': {
- target: 'http://127.0.0.1:18888',
- changeOrigin: true,
- ws: false,
- pathRewrite: {
- '^/api': ''
- }
- }
- }
- }
- }
|