diff options
| author | Leo Goetz <dev@leogtz.de> | 2026-05-08 15:43:50 +0200 |
|---|---|---|
| committer | Leo Goetz <dev@leogtz.de> | 2026-05-08 15:43:50 +0200 |
| commit | b2bd3587bfd42ec8efdab12f090996f600720c0d (patch) | |
| tree | fbb55b716b592032ebbdb5448bfba0b49a609d17 /next.config.ts | |
Diffstat (limited to 'next.config.ts')
| -rw-r--r-- | next.config.ts | 7 |
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; |
