first successful export

This commit is contained in:
2026-02-25 00:27:36 -08:00
parent b70ea7e877
commit 68ccc2f4fc
14 changed files with 163 additions and 207 deletions

View File

@@ -5,11 +5,11 @@ export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/upload': 'http://localhost:8080',
'/analyze': 'http://localhost:8080',
'/export': 'http://localhost:8080',
'/download': 'http://localhost:8080',
'/ws': { target: 'ws://localhost:8080', ws: true },
'/upload': { target: 'http://app:8080', changeOrigin: true },
'/analyze': { target: 'http://app:8080', changeOrigin: true },
'/export': { target: 'http://app:8080', changeOrigin: true },
'/download': { target: 'http://app:8080', changeOrigin: true },
'/ws': { target: 'ws://app:8080', ws: true, changeOrigin: true },
},
},
})