Initial commit: ElysiaJS backend + TanStack Start frontend + Traefik compose

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
mane 2026-06-27 04:01:48 +00:00
commit a346cf3a5c
17 changed files with 505 additions and 0 deletions

10
frontend/vite.config.ts Normal file
View file

@ -0,0 +1,10 @@
import { defineConfig } from "vite";
import { tanstackStart } from "@tanstack/react-start/plugin/vite";
import viteReact from "@vitejs/plugin-react";
// TanStack Start full-stack app. The plugin wires SSR + file-based routing
// (routes live in src/routes, routeTree.gen.ts is generated automatically).
export default defineConfig({
server: { port: 3000, host: true },
plugins: [tanstackStart(), viteReact()],
});