使用proxy,處理cors問題

main
Wayne 2 years ago
parent e861b4f988
commit b62a6a694e

@ -11,6 +11,13 @@ export default defineConfig(({ mode }) => {
server: {
host: '0.0.0.0',
port: 5173,
proxy: {
"/api": {
target: "https://utel.zltest.com.tw/appapi/v1",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ""),
},
},
},
plugins: [
vue(),

Loading…
Cancel
Save