Saltar al contenido principal

⚙️ docusaurus.config.js

docusaurus.config.js

This file holds all configuration that _ should_ change in this site. If you find yourself manually tweaking some obscure JavaScript file in /src then open an issue as we need to include that in this template.

The 1st part of this file contains the changeable information:

/docusaurus.config.js
// Change here to customise config

// Name of the Github Repo, it's also teh baseUrl
const workshopName = 'docusaurus-workshop';
// Change this if hosting outside mongodb-developer
const organizationName = "mongodb-developer";

// Main page config
const title = "Docusaurus Meta Workshop";
const tagLine = "A Workshop written in Docusaurus to teach you how to write Workshops using docusaurus";
const startButtonTitle = "Enter Inception";
const favicon = "img/favicon.svg"

// Main Page Features
const featureList = [
{
title: 'A 100% Meta Workshop on how to build workshops',
illustration: 'img/docu.svg',
description: `
Built using Docusaurus
`,
},
{
title: 'Quick, no-nonsense approach',
illustration: 'img/typing.gif',
description: `
We want to help you build workshops quickly
`,
},
{
title: 'Expaaaandable',
illustration: 'img/expanded-leafy.png',
description: `
Can't wait for your PRs!
`,
},
];

// UTM stuff

const utmAdvocateName = `diego.freniche`;
const utmWorkshopName = 'docusaurus_workshop'

const utmParams = `utm_campaign=devrel&utm_source=workshop&utm_medium=cta&utm_content=${utmWorkshopName}&utm_term=${utmAdvocateName}`;

// Footer links (probably no need to change them)

const footerLinks = [
{
label: 'Try MongoDB Atlas',
href: `https://www.mongodb.com/try?${utmParams}`,
},
{
label: 'Forums',
href: `https://www.mongodb.com/community/forums/${utmParams}`,
},
{
label: 'Developer Center',
href: `https://www.mongodb.com/developer/${utmParams}`,
},
{
label: 'MongoDB University',
href: `https://learn.mongodb.com/${utmParams}`,
},
{
label: `© ${new Date().getFullYear()} MongoDB, Inc.`,
href: "#",
},
];

///////////////////////////////////////////////////////////////////////////////
// DON'T CHANGE ANYTHING BELOW UNLESS YOU KNOW WHAT YOU'RE DOING //
///////////////////////////////////////////////////////////////////////////////