Initial commit: ElysiaJS backend + TanStack Start frontend + Traefik compose
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
commit
a346cf3a5c
17 changed files with 505 additions and 0 deletions
10
frontend/vite.config.ts
Normal file
10
frontend/vite.config.ts
Normal 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()],
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue