This repository contains the documentation website for MONEI, built using Docusaurus 3, a modern static website generator.
yarn
yarn start
This command starts a local development server and opens a browser window. Most changes are reflected live without having to restart the server.
yarn build
This command generates static content into the build
directory and can be served using any static content hosting service.
yarn deploy
This command builds the website and deploys it according to the configuration in your docusaurus.config.js
file.
This project uses Prettier for code formatting. The formatting is automatically applied to staged files before each commit using lint-staged and husky.
To manually format all files:
npx prettier --write .
Pre-commit hooks are set up using husky and lint-staged to ensure code quality:
- All staged files are automatically formatted with Prettier before each commit
This project is licensed under the MIT License - see the LICENSE file for details.