From 41bbda12a76f317ab5c0e856fd79c4c9a5520a83 Mon Sep 17 00:00:00 2001 From: cupadev-admin Date: Sun, 8 Mar 2026 19:49:36 +0000 Subject: [PATCH] feat: add next.config.js --- next.config.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 next.config.js diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..2080b99 --- /dev/null +++ b/next.config.js @@ -0,0 +1,10 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + reactStrictMode: true, + images: { + domains: [], + unoptimized: true, + }, +}; + +module.exports = nextConfig;