- Initialize Next.js 15.5.4 with TypeScript and App Router - Configure Tailwind CSS v4 with ShadCN UI component library - Set up OpenNext for Cloudflare Workers deployment - Add Gitea Actions workflows for CI/CD (lint, build, deploy) - Create issue templates (bug, feature, question) and PR template - Add comprehensive CONTRIBUTING.md and README.md documentation - Configure build scripts and deployment configuration
16 lines
336 B
TypeScript
16 lines
336 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
// OpenNext configuration for Cloudflare deployment
|
|
experimental: {
|
|
// Enable any experimental features if needed
|
|
},
|
|
// Image optimization for Cloudflare
|
|
images: {
|
|
unoptimized: false,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|