nordicstorium/next.config.ts

18 lines
303 B
TypeScript
Raw Normal View History

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