jg-eucs/next.config.js
2023-04-16 15:49:32 +02:00

9 lines
177 B
JavaScript

/** @type {import('next').NextConfig} */
const { i18n } = require('./next-i18next.config')
const nextConfig = {
reactStrictMode: true,
i18n,
}
module.exports = nextConfig