From 321cf274304e020a98d2c8636eadbf5fc5419dbb Mon Sep 17 00:00:00 2001 From: cupadev-admin Date: Sun, 8 Mar 2026 18:33:35 +0000 Subject: [PATCH] feat: add next.config.ts --- next.config.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 next.config.ts diff --git a/next.config.ts b/next.config.ts new file mode 100644 index 0000000..9848290 --- /dev/null +++ b/next.config.ts @@ -0,0 +1,15 @@ +import type { NextConfig } from "next"; + +const nextConfig: NextConfig = { + reactStrictMode: true, + images: { + remotePatterns: [ + { + protocol: "https", + hostname: "images.unsplash.com", + }, + ], + }, +}; + +export default nextConfig;