mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
21 lines
411 B
JavaScript
21 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);
|