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