mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-09 22:33:37 +00:00
New Bun-based React Router 7 app with Tailwind CSS, branded with Arc logo/colors. Features an app shell with nav routing (/start, /pipelines, /settings) and a Trello-style pipeline board with Working, Pending, Verify, and Merge columns showing PR cards with CI status, comments, resources, and action buttons. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 lines
205 B
TypeScript
7 lines
205 B
TypeScript
import type { Config } from "@react-router/dev/config";
|
|
|
|
export default {
|
|
// Config options...
|
|
// Server-side render by default, to enable SPA mode set this to `false`
|
|
ssr: true,
|
|
} satisfies Config;
|