Perplexica/ui/next.config.mjs

13 lines
234 B
JavaScript
Raw Normal View History

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