Files
myeasycms-v2/apps/dev-tool/next.config.ts
Giancarlo Buomprisco 4bc8448a1d Unify workspace dropdowns; Update layouts (#458)
Unified Account and Workspace drop-downs; Layout updates, now header lives within the PageBody component; Sidebars now use floating variant
2026-03-11 14:45:42 +08:00

22 lines
463 B
TypeScript

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);