| 123456789101112131415161718192021222324252627 |
- module.exports = {
- devServer: {
- proxy: {
- "^/api": {
- // target: "http://localhost:4000/",
- // target: "http://10.1.1.198:8080/",
- // target: "http://192.168.0.100:8080",
- // target: "http://seec.yangshan.tech",
- // target: "http://seec.seecoder.cn",
- target: "http://localhost:8080",
- ws: true,
- changeOrigin: true
- }
- },
- disableHostCheck: true
- },
- configureWebpack: {
- devtool: "source-map"
- },
- css: {
- loaderOptions: {
- sass: {
- implementation: require("sass")
- }
- }
- }
- };
|