story-research-zapwall/next.config.js
2026-01-05 23:14:47 +01:00

42 lines
960 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
// Note: eslint configuration in next.config.js is no longer supported in Next.js 16+
// Use 'next lint --ignore-build-errors' or configure in .eslintrc.json instead
typescript: {
// Désactiver la vérification TypeScript lors du build
ignoreBuildErrors: true,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.nostrcheck.me',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'nostrimg.com',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'void.cat',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'nostr.build',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'picstr.build',
pathname: '/**',
},
],
},
}
module.exports = nextConfig