nordicstorium/next.config.ts

17 lines
279 B
TypeScript
Raw Normal View History

2026-02-02 15:09:01 +00:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com',
port: '',
pathname: '/**',
},
],
},
};
export default nextConfig;