Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

next.config.js 261B

12345678910111213
  1. /** @type {import('next').NextConfig} */
  2. const { i18n } = require('./next-i18next.config');
  3. const nextConfig = {
  4. images: {
  5. domains: ['www.business2community.com'],
  6. },
  7. reactStrictMode: true,
  8. swcMinify: true,
  9. i18n,
  10. };
  11. module.exports = nextConfig;