diff --git a/src/config/proxy.ts b/src/config/proxy.ts index a6735ee..4f4e5db 100644 --- a/src/config/proxy.ts +++ b/src/config/proxy.ts @@ -1,6 +1,6 @@ const proxy = { '/dev/': { - target: 'http://127.0.0.1:8888', + target: 'http://127.0.0.1:8001', changeOrigin: true, rewrite: (path: string) => path.replace(/^\/dev/, '') }, @@ -12,7 +12,7 @@ const proxy = { } }; -const value = 'prod'; +const value = 'dev'; const host = proxy[`/${value}/`]?.target; export { proxy, host, value };