/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, // RSS/Google AdSense scripts are injected safely by our own client // components (see src/components/ads). Keep lint from failing the build // on un-stulated style warnings while keeping full type checking on. eslint: { ignoreDuringBuilds: true, }, images: { remotePatterns: [ { protocol: 'https', hostname: '**' }, { protocol: 'http', hostname: 'localhost' }, { protocol: 'http', hostname: '127.0.0.1' }, ], }, }; export default nextConfig;