Files
myeasycms-v2/apps/dev-tool/next.config.ts
Giancarlo Buomprisco 2e20d3e76f 2.18.0: New Invitation flow, refactored Database Webhooks, new ShadCN UI Components (#384)
* Streamlined invitations flow
* Removed web hooks in favor of handling logic directly in server actions
* Added new Shadcn UI Components
2025-10-05 17:54:16 +08:00

20 lines
342 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
reactStrictMode: true,
transpilePackages: ['@kit/ui', '@kit/shared'],
experimental: {
reactCompiler: true,
},
devIndicators: {
position: 'bottom-right',
},
logging: {
fetches: {
fullUrl: true,
},
},
};
export default nextConfig;