42 lines
960 B
JavaScript
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
|