chore: kanban template

This commit is contained in:
e2e
2026-06-21 21:47:10 +02:00
commit 908a5eae6c
209 changed files with 215578 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { addHTTPMiddleware } from '@pikku/core/http'
import { cors } from '@pikku/core/middleware'
// The Better Auth session-bridge middleware (betterAuthSession) is generated and
// registered globally by the pikku CLI from src/wirings/auth.ts — see
// src/scaffold/auth.gen.ts — so it is NOT wired here. This file only configures
// CORS for the browser client.
addHTTPMiddleware('*', [
cors({
origin: true,
credentials: true,
headers: ['Content-Type', 'Authorization', 'X-Auth-Return-Redirect'],
}),
])