Update secure login flow and login view

This commit is contained in:
Lorenzune
2026-04-23 16:26:32 +02:00
parent 237c523f9a
commit 541d3045f1
24 changed files with 801 additions and 106 deletions
+11 -5
View File
@@ -17,11 +17,17 @@ export default defineConfig({
]
},
proxy: {
'/api': {
target: process.env.AUTH_PROXY_TARGET || 'http://localhost:2096',
changeOrigin: true,
}
}
'/api': {
target: process.env.AUTH_PROXY_TARGET || 'http://192.168.1.52:2096/',
changeOrigin: true,
ws: true,
},
'/nitro-sec': {
target: process.env.NITRO_PROXY_TARGET || 'http://192.168.1.52:2096/',
changeOrigin: true,
ws: true,
}
}
},
resolve: {
tsconfigPaths: true,