mirror of
https://github.com/replicatedhq/ttl.sh.git
synced 2026-02-14 16:59:51 +00:00
- Complete redesign using shadcn/ui components - Dark/light theme support with next-themes - Modern hero section with terminal animation - Features, How-to, Use Cases, and Time Limits sections - Responsive header with mobile menu - Tailwind CSS v4 with CSS variables for theming - All custom components (Header, Hero, Features, etc.) - Full shadcn/ui component library included Design by Marc via v0.dev Signed-off-by: Marc Campbell <marc.e.campbell@gmail.com>
14 lines
219 B
TypeScript
14 lines
219 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|