Skip to content
Snippets Groups Projects
next.config.js 280 B
Newer Older
Alexander Schoch's avatar
Alexander Schoch committed
/** @type {import('next').NextConfig} */
const { i18n } = require('./next-i18next.config');

const nextConfig = {
  reactStrictMode: true,
  i18n: i18n,
  webpack: (config) => {
    config.resolve.fallback = { fs: false };

    return config;
  },
}

module.exports = nextConfig;