diff --git a/vite.config.ts b/vite.config.ts index 079fbd5..a5068a3 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -10,19 +10,19 @@ export default defineConfig(({ mode }) => { host: '0.0.0.0', proxy: { '/api': { - target: 'http://localhost:3001', + target: 'http://127.0.0.1:3001', changeOrigin: true, }, '/audio': { - target: 'http://localhost:3001', + target: 'http://127.0.0.1:3001', changeOrigin: true, }, '/editor': { - target: 'http://localhost:3001', + target: 'http://127.0.0.1:3001', changeOrigin: true, }, '/blog': { - target: 'http://localhost:3001', + target: 'http://127.0.0.1:3001', changeOrigin: true, }, },