123456789101112131415161718192021222324252627282930313233343536 |
- const path = require("path");
- module.exports = {
-
- configureWebpack: {
-
-
-
-
-
-
-
- devServer: {
- "port": 8080,
-
- disableHostCheck: true,
- "proxy": {
- "/api": {
-
-
- "target": "https://api.qunali.site.xmnk.cn/api",
- "changeOrigin": true,
- "secure": false,
- "pathRewrite": {
- "^/api": ""
- }
- }
- }
- },
-
- },
- }
|