| 1 | import type { NextConfig } from "next"; | |
| 2 | ||
| 3 | const nextConfig: NextConfig = { | |
| 4 | reactStrictMode: true, | |
| 5 | images: { | |
| 6 | remotePatterns: [ | |
| 7 | { protocol: "https", hostname: "images.unsplash.com" }, | |
| 8 | // Add CDN / S3 bucket for project screenshots if needed | |
| 9 | ], | |
| 10 | }, | |
| 11 | experimental: { | |
| 12 | typedRoutes: true, | |
| 13 | }, | |
| 14 | }; | |
| 15 | ||
| 16 | export default nextConfig; |