Sacha VAUDEY d36f6f48e8
Some checks failed
Build / build-check (pull_request) Failing after 57s
update to Tailwind v4
2025-09-13 22:26:20 +02:00

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