This repository has been archived on 2026-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

22 lines
668 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
// Minimal Docker image: the runner stage copies .next/standalone.
output: 'standalone',
// 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;