UNPKG

@nadeshikon/plugin-nextjs

Version:
15 lines (12 loc) 356 B
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