/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, output: 'export', basePath: '/infrafabric/IF.docs.md2html', images: { unoptimized: true, }, webpack: (config) => { config.resolve.fallback = { fs: false, path: false }; return config; }, }; export default nextConfig;