zapishis-client/apps/web/next.config.js
Vlad Chikalkin 49df4365ca
Feature/telegram integration (#4)
* add files from official template

* remove all official template trash
2024-12-11 16:00:55 +03:00

11 lines
248 B
JavaScript

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