Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
291 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
trailingSlash: true,
images: {
remotePatterns: [
{
protocol: "http",
hostname: process.env.NEXT_PUBLIC_WORDPRESS_API_HOSTNAME,
port: "",
},
],
},
};
module.exports = nextConfig;