Files
documenso/apps/documentation/next.config.js
2024-04-11 16:44:22 +03:00

10 lines
217 B
JavaScript

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