perplexican / ui /next.config.mjs
0Scottzilla0's picture
Upload folder using huggingface_hub
a80ecb8 verified
raw
history blame contribute delete
202 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
hostname: 's2.googleusercontent.com',
},
],
},
};
export default nextConfig;