import type { NextConfig } from 'next'; import nextra from 'nextra'; const nextConfig: NextConfig = { transpilePackages: [ '@documenso/assets', '@documenso/lib', '@documenso/tailwind-config', '@documenso/trpc', '@documenso/ui', ], }; const withNextra = nextra({ theme: 'nextra-theme-docs', themeConfig: './theme.config.tsx', codeHighlight: true, }); export default withNextra(nextConfig);