Archived
22 lines
668 B
JavaScript
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;
|