@nadeshikon/plugin-nextjs
Version:
Run Next.js seamlessly on Netlify
15 lines (12 loc) • 356 B
JavaScript
const { i18n } = require('./next-i18next.config')
/** @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,
},
i18n,
}
module.exports = nextConfig