Files
documenso/apps/documentation/next.config.js
2024-04-12 14:40:39 +03:00

10 lines
217 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {};
const withNextra = require('nextra')({
theme: 'nextra-theme-docs',
themeConfig: './theme.config.tsx',
});
module.exports = withNextra(nextConfig);