diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-16 08:49:08 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-16 08:49:08 -0800 |
| commit | 1f36ec29c83bf5826c90986e071705888c83036c (patch) | |
| tree | c2d0100ff3571fd1ed86ff7c184701e8bb48a069 /frontend-vanilla/vite.config.ts | |
| parent | aee026b141532c11f8eb315ca77cc23f663901ae (diff) | |
| download | neko-1f36ec29c83bf5826c90986e071705888c83036c.tar.gz neko-1f36ec29c83bf5826c90986e071705888c83036c.tar.bz2 neko-1f36ec29c83bf5826c90986e071705888c83036c.zip | |
Fix v3 build process and CSRF login/logout exclusions
- Update Makefile to correctly build and copy frontend-vanilla (v3) assets
- Fix frontend-vanilla/vite.config.ts to build to its own dist directory
- Normalize CSRF check path and exclude /api/logout to fix v3 session clearing
- Include latest built assets for v3
Diffstat (limited to 'frontend-vanilla/vite.config.ts')
| -rw-r--r-- | frontend-vanilla/vite.config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend-vanilla/vite.config.ts b/frontend-vanilla/vite.config.ts index 58b4f81..ab4f8b4 100644 --- a/frontend-vanilla/vite.config.ts +++ b/frontend-vanilla/vite.config.ts @@ -11,7 +11,7 @@ export default defineConfig({ }, }, build: { - outDir: '../web/dist/v3', + outDir: 'dist', emptyOutDir: true } }); |
