| /** @type {import('next').NextConfig} */ | |
| const nextConfig = { | |
| images: { | |
| unoptimized: true, | |
| remotePatterns: [ | |
| { protocol: 'https', hostname: 'picsum.photos' }, | |
| { protocol: 'https', hostname: 'images.unsplash.com' }, | |
| { protocol: 'https', hostname: 'api.dicebear.com' }, | |
| { protocol: 'https', hostname: 'images.pexels.com' }, | |
| { protocol: 'https', hostname: 'tenor.googleapis.com' }, | |
| { protocol: 'https', hostname: 'cdn.jsdelivr.net' } | |
| ], | |
| }, | |
| typescript: { | |
| ignoreBuildErrors: true, | |
| }, | |
| eslint: { | |
| ignoreDuringBuilds: true, | |
| }, | |
| }; | |
| module.exports = nextConfig; | |