looood / next.config.js
looda3131's picture
Clean push without any binary history
cc276cc
/** @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;