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