import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: 'export', trailingSlash: true, images: { unoptimized: true, remotePatterns: [ { protocol: 'https', hostname: 'images.unsplash.com', }, ], }, }; export default nextConfig;