UNPKG

@nadeshikon/plugin-nextjs

Version:
21 lines (19 loc) 480 B
/** @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