24 lines
465 B
JavaScript
24 lines
465 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
// Allow these remote hosts for next/image optimization
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'ui-avatars.com',
|
|
port: '',
|
|
pathname: '/**'
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'www.gravatar.com',
|
|
port: '',
|
|
pathname: '/**'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
export default nextConfig
|