feat: setup web/ for tanstack router frontend

This commit is contained in:
2025-09-13 11:30:11 -05:00
parent ac2638dd9a
commit 6f831f5fa6
23 changed files with 5227 additions and 0 deletions

21
Justfile Normal file
View File

@@ -0,0 +1,21 @@
frontend:
pnpm run -C web dev
backend:
cargo run --bin banner
build-frontend:
pnpm run -C web build
build-backend:
cargo build --release --bin banner
build: build-frontend build-backend
# Production build that embeds assets
build-prod:
pnpm run -C web build
cargo build --release --bin banner
[parallel]
dev: frontend backend