import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", images: { loader: "custom", loaderFile: "./lib/openinary-loader.ts", remotePatterns: [ { protocol: "https", hostname: "media.ayris.tech", }, { protocol: "https", hostname: "images.unsplash.com", }, ], }, }; export default nextConfig;