2d2120cea1
This PR drastically improves the documentation by improving the sidebars and adding a GitHub icon. Fixed: https://github.com/puppeteer/puppeteer/pull/9176 Fixed: https://github.com/puppeteer/puppeteer/issues/9173 ![image](https://user-images.githubusercontent.com/101637635/198374826-399219f6-e04f-4613-9613-f7e3281d332f.png)
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',
|
|
},
|
|
],
|
|
};
|