From bee093cc3653789867606c3a536ec7999a774fc6 Mon Sep 17 00:00:00 2001 From: schererleander Date: Wed, 2 Jul 2025 22:17:16 +0200 Subject: feat: project setup and configuration --- next.config.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 next.config.ts (limited to 'next.config.ts') diff --git a/next.config.ts b/next.config.ts new file mode 100644 index 0000000..e9ffa30 --- /dev/null +++ b/next.config.ts @@ -0,0 +1,7 @@ +import type { NextConfig } from "next"; + +const nextConfig: NextConfig = { + /* config options here */ +}; + +export default nextConfig; -- cgit v1.3.1