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