mirror of
https://github.com/documenso/documenso.git
synced 2025-11-23 05:01:54 +10:00
22 lines
423 B
TypeScript
22 lines
423 B
TypeScript
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);
|