feat: add next.config.ts

This commit is contained in:
cupadev-admin 2026-03-08 18:33:35 +00:00
parent 1f7b9ae7b9
commit 321cf27430
1 changed files with 15 additions and 0 deletions

15
next.config.ts Normal file
View File

@ -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;