mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-15 12:18:01 -04:00
10 lines
272 B
TypeScript
10 lines
272 B
TypeScript
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
|
|
|
|
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
sidebar: [{ type: 'autogenerated', dirName: '.' }],
|
|
};
|
|
|
|
export default sidebars;
|