A lot of cleanup, restructuring project directory.

This commit is contained in:
2025-07-14 23:54:04 +00:00
parent 286a5180a4
commit 4b20a53aa2
21 changed files with 497 additions and 483 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

+4 -4
View File
@@ -13,19 +13,19 @@ export default defineConfig(({ command, mode }) => ({
'@': fileURLToPath(new URL('./src', import.meta.url))
},
},
base: command == 'build' ? '/auth/' : '/',
base: command === 'build' ? '/auth/' : '/',
server: {
port: 3000,
port: 4403,
proxy: {
'/auth/': {
target: 'http://localhost:8000',
target: 'http://localhost:4401',
ws: true,
changeOrigin: false
}
}
},
build: {
outDir: '../passkeyauth/frontend-static',
outDir: '../passkey/frontend-build',
emptyOutDir: true,
assetsDir: 'assets'
}