Files
baya-monorepo/client/next.config.mjs
T
2026-07-17 17:10:39 +03:30

14 lines
288 B
JavaScript

import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts');
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
turbopack: {
root: '.'
}
};
export default withNextIntl(nextConfig);