Update vite.config.ts to add trailing comma for consistency in server proxy configuration

This commit is contained in:
2025-12-27 12:26:09 -06:00
parent 44b11cf3e8
commit 7a8674f0db

View File

@@ -15,7 +15,7 @@ export default defineConfig({
plugins: [sveltekit()],
server: {
proxy: {
'/api': 'http://localhost:8080'
}
}
'/api': 'http://localhost:8080',
},
},
});