This website is built using Docusaurus 2, a modern static website generator.
You can use either Yarn or npm to install dependencies.
yarnnpm installyarn startnpm run startThis command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
yarn buildnpm run buildThis command generates static content into the build directory and can be served using any static content hosting service.
If you’re using GitHub Pages for hosting, these commands help you build and deploy the site.
USE_SSH=true yarn deployGIT_USER=<Your GitHub username> yarn deployUSE_SSH=true npm run deploy
# or
GIT_USER=<Your GitHub username> npm run deploy💡 Make sure the deploy script is defined in your package.json. If not, prefer using Yarn for deployment.