fix: disable SSL verification for Vite dev proxy

This commit is contained in:
Martin Svrcina 2026-03-23 00:33:17 +01:00
parent 417c230d74
commit 2d06b4f8a4

View File

@ -17,7 +17,10 @@ export default defineConfig({
},
server: {
proxy: {
'/api': 'https://localhost:7244',
'/api': {
target: 'https://localhost:7244',
secure: false,
},
},
},
})