diff options
Diffstat (limited to 'frontend/next.config.ts')
-rw-r--r-- | frontend/next.config.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/frontend/next.config.ts b/frontend/next.config.ts new file mode 100644 index 0000000..e9ffa30 --- /dev/null +++ b/frontend/next.config.ts @@ -0,0 +1,7 @@ +import type { NextConfig } from "next"; + +const nextConfig: NextConfig = { + /* config options here */ +}; + +export default nextConfig; |