mirror of
https://github.com/WhatsApp/erlang-language-platform.git
synced 2025-12-23 12:26:48 +00:00
Summary: The license header we use for our Apache + MIT dual licensed projects can be made more explicit. This has not actual implications on licensing, but does clarify what it means for a project to be dual licensed. Reviewed By: bigfootjon Differential Revision: D77550482 fbshipit-source-id: 24267af9a7715bfc604b5840ce29776705428516
37 lines
1,007 B
JavaScript
37 lines
1,007 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is dual-licensed under either the MIT license found in the
|
|
* LICENSE-MIT file in the root directory of this source tree or the Apache
|
|
* License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
|
* of this source tree. You may select, at your option, one of the
|
|
* above-listed licenses.
|
|
*/
|
|
|
|
|
|
/**
|
|
* 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 = {
|
|
// 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: 'Tutorial',
|
|
items: ['hello'],
|
|
},
|
|
],
|
|
*/
|
|
};
|