Skip to main content

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 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