@simbashrd/docs
v0.0.0
Published
The documentation for simbashrd's blog projects
Readme
@simbashrd/docs
📖 Documentation for simbashrd's Blog Projects
This repository contains the documentation for simbashrd's blog projects, built using Next.js and other modern tools.
🚀 Getting Started
Installation
First, make sure you have pnpm installed. Then, install dependencies:
pnpm installDevelopment
To start the local development server, run:
pnpm dev
This will start the Next.js app on http://localhost:3002.Building the Project
To build the project for production:
pnpm build
If you need to generate MDX contentpnpm build:mdx
Linting & Type CheckingRun the linter to check for code style issues:
pnpm lintTo automatically fix linting errors:
pnpm lint:fixTo check for TypeScript errors:
pnpm type-check📦 Project Structure
.
├── public/ # Static assets
│ └── img/ # Images
├── src/ # Source code
│ ├── components/ # Reusable UI components
│ ├── templates/ # MDX templates
│ └── index.ts # Entry point
├── package.json # Project dependencies & scripts
├── tsconfig.json # TypeScript configuration
└── eslint.config.mjs # ESLint configuration