summaryrefslogtreecommitdiff
path: root/next.config.ts
diff options
context:
space:
mode:
authorLeo Goetz <dev@leogtz.de>2026-05-08 15:43:50 +0200
committerLeo Goetz <dev@leogtz.de>2026-05-08 15:43:50 +0200
commitb2bd3587bfd42ec8efdab12f090996f600720c0d (patch)
treefbb55b716b592032ebbdb5448bfba0b49a609d17 /next.config.ts
inital commitHEADmaster
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..225e495
--- /dev/null
+++ b/next.config.ts
@@ -0,0 +1,7 @@
+import type { NextConfig } from "next";
+
+const nextConfig: NextConfig = {
+ output: 'standalone',
+};
+
+export default nextConfig;