mirror of
https://github.com/pdfme/pdfme.git
synced 2026-04-18 04:59:08 -04:00
24 lines
436 B
JavaScript
24 lines
436 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
tutorialSidebar: [
|
|
'getting-started',
|
|
'supported-features',
|
|
{
|
|
type: 'category',
|
|
collapsed: false,
|
|
label: 'Customization',
|
|
items: [
|
|
'custom-fonts',
|
|
'custom-ui',
|
|
'custom-schemas',
|
|
],
|
|
},
|
|
'tables',
|
|
'development-guide',
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|