diff options
| author | schererleander <leander@schererleander.de> | 2025-07-02 22:17:16 +0200 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-07-02 22:17:16 +0200 |
| commit | bee093cc3653789867606c3a536ec7999a774fc6 (patch) | |
| tree | dbfaebf7785e75751159743b4015960525a43e5a /next.config.ts | |
feat: project setup and configuration
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..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; |
