mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-13 03:56:33 -04:00
9 lines
226 B
JavaScript
9 lines
226 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const withNextra = require('nextra')({
|
|
theme: 'nextra-theme-docs',
|
|
themeConfig: './theme.config.js',
|
|
unstable_staticImage: true
|
|
});
|
|
|
|
module.exports = withNextra();
|