Configuration
This section covers the custom configuration powering the MKX SpaceHub™ website. From its initial GitHub commit, the MKX SpaceHub™ has been organized as a monorepo with examples and built with Docusaurus TypeScript variant along with some awesome tools like VS Code.
Installation
npx create-docusaurus@latest website classic --typescript
- npm
- Yarn
- pnpm
npm run start
yarn run start
pnpm run start
Structure
Here is a broad overview of the important files and folders.
mkeithx.github.io/ ├── / │ ├── [````] │ └── ... └── website/ ├── blog/ │ ├── [BLOG POSTS] │ └── ... ├── community/ │ ├─ ─ [CONTRIBUTING DOC FILES] │ └── ... ├── cosmos/ │ ├── [ ARTICLES ABOUT SPACE ] │ └── ... ├── docs/ │ ├── [ MAIN DOCS] │ └── ... ├── src/ │ ├── css/ │ │ ├── [CUSTOM STYLES] │ │ └── ... │ ├── pages/ │ │ ├── [STATIC PAGES] │ │ └── ... │ └── theme/ │ │ ├── [SWIZZLED COMPONENTS] │ │ └── ... ├── static/ │ ├── .../ │ │ └── assets/ │ ├── .../ │ │ └── assets/ │ └── img/ ├── docusaurus.config.ts ├── package.json ├── sidebars.json ├── sidebarsCommunity.ts ├── sidebarsCosmos.ts └── .../
More
📄️ Create a Document
Create a Markdown Document
📄️ Create a Page
Create a Page using React components
📄️ Create a Blog Post
Create a Blog Article
🗃️ Deployment
2 items
🗃️ Plugins
1 item