From 74b95a5af582fd31a005979f6a57ed8e1a4dc2e7 Mon Sep 17 00:00:00 2001 From: vidane Date: Sat, 2 May 2026 17:37:14 -0400 Subject: [PATCH] Add next.config.ts --- next.config.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 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;