perplexica/ui/next.config.mjs

13 lines
202 B
JavaScript
Raw Normal View History

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