zapishis-client/apps/web/next.config.js
2025-04-16 10:53:31 +03:00

14 lines
295 B
JavaScript

import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin('./utils/i18n/i18n.ts');
const nextConfig = withNextIntl({
eslint: {
ignoreDuringBuilds: true,
},
reactStrictMode: true,
transpilePackages: ['@repo/ui'],
});
export default nextConfig;