mirror of
https://github.com/documenso/documenso
synced 2026-04-21 21:37:18 +00:00
20 lines
411 B
JavaScript
20 lines
411 B
JavaScript
import nextra from 'nextra';
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const 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);
|