diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-31 12:04:28 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-05-31 12:04:28 +0200 |
commit | 07502291eecb680c4dd9ecd55cf01dea796ebaa2 (patch) | |
tree | 15fbf3b3395170e9c3f6523e2fb656f10f4a6cc4 /master | |
parent | 0ad18c994129f522fa7cf0577d975e05c3ec4ef4 (diff) |
chore(master): fix client Vue config
Diffstat (limited to 'master')
-rw-r--r-- | master/client/vue.config.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/master/client/vue.config.js b/master/client/vue.config.js index 1f0e2b3..2a2abba 100644 --- a/master/client/vue.config.js +++ b/master/client/vue.config.js @@ -3,11 +3,10 @@ const { defineConfig } = require("@vue/cli-service"); module.exports = defineConfig({ transpileDependencies: true, devServer: { - host: "192.168.1.213", port: 8080, proxy: { "^/api": { - target: "http://192.168.1.213:80", + target: "http://localhost:80", changeOrigin: true } } |