Unified Account and Workspace drop-downs; Layout updates, now header lives within the PageBody component; Sidebars now use floating variant
22 lines
463 B
TypeScript
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);
|