1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-04 13:21:45 +00:00

chore: add .well-known to development reverse proxy

This commit is contained in:
Elias Schneider
2025-05-21 15:11:04 +02:00
parent 8326bfd136
commit 05b443d984

View File

@@ -18,7 +18,10 @@ export default defineConfig({
server: {
proxy: {
'/api': {
target: process.env.DEVELOPMENT_BACKEND_URL || 'http://localhost:1411',
target: process.env.DEVELOPMENT_BACKEND_URL || 'http://localhost:1411'
},
'/.well-known': {
target: process.env.DEVELOPMENT_BACKEND_URL || 'http://localhost:1411'
}
}
}