chore(v2): update examples to use alpha73 (#4631)

* regenerate examples on alpha73

* fix init template typo + add missing files
This commit is contained in:
Sébastien Lorber 2021-04-16 14:08:23 +02:00 committed by GitHub
parent 4d49945775
commit c8cf48a355
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
39 changed files with 1968 additions and 2905 deletions

View file

@ -1,16 +1,26 @@
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
module.exports = {
docs: [
// By default, Docusaurus generates a sidebar from the docs folder structure
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
// But you can create a sidebar manually
/*
tutorialSidebar: [
{
type: 'category',
label: 'Docusaurus Tutorial',
items: [
'getting-started',
'create-a-page',
'create-a-document',
'create-a-blog-post',
'markdown-features',
'thank-you',
],
label: 'Tutorial',
items: ['hello'],
},
],
*/
};