mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
34 lines
667 B
JavaScript
34 lines
667 B
JavaScript
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
||
|
module.exports = {
|
||
|
docs: [
|
||
|
'index',
|
||
|
{
|
||
|
type: 'category',
|
||
|
label: 'Guides',
|
||
|
link: {
|
||
|
type: 'generated-index',
|
||
|
title: 'Puppeteer Guides',
|
||
|
keywords: ['guides'],
|
||
|
},
|
||
|
collapsed: false,
|
||
|
items: [
|
||
|
'guides/chrome-extensions',
|
||
|
'guides/configuration',
|
||
|
'guides/debugging',
|
||
|
'guides/docker',
|
||
|
'guides/request-interception',
|
||
|
],
|
||
|
},
|
||
|
'chromium-support',
|
||
|
'troubleshooting',
|
||
|
'contributing',
|
||
|
'faq',
|
||
|
],
|
||
|
api: [
|
||
|
{
|
||
|
type: 'autogenerated',
|
||
|
dirName: 'api',
|
||
|
},
|
||
|
],
|
||
|
};
|