import type { NextConfig } from 'next'; import createNextIntlPlugin from 'next-intl/plugin'; const withNextIntl = createNextIntlPlugin('./i18n/request.ts'); const nextConfig: NextConfig = { reactStrictMode: true, transpilePackages: ['@kit/ui', '@kit/shared', '@kit/i18n'], reactCompiler: true, devIndicators: { position: 'bottom-right', }, logging: { fetches: { fullUrl: true, }, }, }; export default withNextIntl(nextConfig);