aboutsummaryrefslogtreecommitdiff
path: root/next.config.ts
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-07-02 22:17:16 +0200
committerschererleander <leander@schererleander.de>2025-07-02 22:17:16 +0200
commitbee093cc3653789867606c3a536ec7999a774fc6 (patch)
treedbfaebf7785e75751159743b4015960525a43e5a /next.config.ts
feat: project setup and configuration
Diffstat (limited to 'next.config.ts')
-rw-r--r--next.config.ts7
1 files changed, 7 insertions, 0 deletions
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;