Perplexica/ui/next.config.mjs

13 lines
202 B
JavaScript
Raw Normal View History

2024-04-09 16:21:05 +05:30
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
hostname: 's2.googleusercontent.com',
},
],
},
};
export default nextConfig;