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