nextjs-replicate / next.config.mjs
AnthoneoJ's picture
Upload 16 files
cf476f3 verified
raw
history blame
397 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "replicate.com",
},
{
protocol: "https",
hostname: "replicate.delivery",
},
],
},
};
export default nextConfig;