chore: initial commit — monorepo ReadaBook (API NestJS, web PWA, Docker)

This commit is contained in:
Git Agent
2026-08-23 09:56:53 +02:00
commit 8f1140127f
79 changed files with 6456 additions and 0 deletions

16
apps/web/vite.config.ts Normal file
View File

@ -0,0 +1,16 @@
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
"/auth": "http://127.0.0.1:3000",
"/admin": "http://127.0.0.1:3000",
"/books": "http://127.0.0.1:3000",
"/progress": "http://127.0.0.1:3000",
"/healthz": "http://127.0.0.1:3000"
}
}
});