This commit is contained in:
2025-03-13 02:51:40 -04:00
parent 46d93a62a1
commit 5657d40c02
24 changed files with 1133 additions and 31 deletions

View File

@ -6,5 +6,14 @@ export default defineConfig({
plugins: [
tailwindcss(),
sveltekit()
]
],
server: {
proxy: {
'/grpc': {
target: 'http://localhost:8080',
changeOrigin: true,
},
},
host: '0.0.0.0',
}
});