dashboard-app-template/next.config.ts
Nicholai 84be4cc055 feat: initial dashboard-app-template setup
- Next.js 15 with Cloudflare Workers deployment via OpenNext
- ooIDE theme from tweakcn (Sora + IBM Plex Mono fonts, oklch colors)
- Full shadcn/ui component library installed
- dashboard-01 template at /dashboard route
- Simple landing page with link to dashboard
2026-01-22 04:38:44 -07:00

13 lines
371 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
};
export default nextConfig;
// Enable calling `getCloudflareContext()` in `next dev`.
// See https://opennext.js.org/cloudflare/bindings#local-access-to-bindings.
import { initOpenNextCloudflareForDev } from "@opennextjs/cloudflare";
initOpenNextCloudflareForDev();