@nadeshikon/plugin-nextjs
Version:
Run Next.js seamlessly on Netlify
21 lines (19 loc) • 480 B
JavaScript
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
images: {
formats: ['image/avif', 'image/webp'],
remotePatterns: [
{
protocol: 'https',
hostname: '*.githubusercontent.com',
},
],
}
}
module.exports = nextConfig