Next.js template
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

next.config.js 199B

12345678910
  1. /** @type {import('next').NextConfig} */
  2. const { i18n } = require('./next-i18next.config');
  3. const nextConfig = {
  4. reactStrictMode: true,
  5. swcMinify: true,
  6. i18n,
  7. };
  8. module.exports = nextConfig;