next.config.ts 238 B

1234567891011
  1. import type { NextConfig } from 'next';
  2. const config: NextConfig = {
  3. reactStrictMode: true,
  4. transpilePackages: ['@briven/ui', '@briven/config', 'fumadocs-ui'],
  5. experimental: {
  6. typedRoutes: true,
  7. },
  8. };
  9. export default config;