123456789101112131415161718192021 |
- module.exports = {
- publicPath: "/",
- outputDir: '../dist',
- devServer: {
- port: 8008,
- proxy: {
- "/zd-api": {
-
- target: 'http://localhost:3000',
- ws: false,
- secure: false,
- changeOrigin: true,
- pathRewrite: {
- "^/zd-api": "",
- },
- },
- },
- },
- };
|