From 93cdb62a598750408e1e879fe7da15906bcc6106 Mon Sep 17 00:00:00 2001 From: muken Date: Sat, 27 Jun 2026 21:24:05 +0000 Subject: [PATCH] chore: add minimal Next.js config --- next.config.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 next.config.js diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..91ef62f --- /dev/null +++ b/next.config.js @@ -0,0 +1,6 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + reactStrictMode: true, +}; + +module.exports = nextConfig;