feat: add next.config.js

This commit is contained in:
cupadev-admin 2026-03-08 19:49:36 +00:00
parent 0a34c7ed10
commit 41bbda12a7
1 changed files with 10 additions and 0 deletions

10
next.config.js Normal file
View File

@ -0,0 +1,10 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: [],
unoptimized: true,
},
};
module.exports = nextConfig;