fix: docs dev command

This commit is contained in:
Piyush Gupta
2025-10-13 18:29:28 +05:30
parent fc6e364c60
commit 8ea569c68a
2 changed files with 5 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
# Contributing to the documentation
## Getting familiar with Mintlify
New to Mintlify. [Start Here](https://mintlify.com/docs/quickstart)
New to Mintlify. [Start Here](https://mintlify.com/docs/quickstart)
## 👩‍💻 Development
@@ -15,10 +15,10 @@ npm i -g mintlify
Run the following command at the root of your documentation (where mint.json is)
```
mintlify dev
mint dev
```
## Troubleshooting
- Mintlify dev isn't running - Run `mintlify install` it'll re-install dependencies.
- Mint dev isn't running - Run `mintlify install` it'll re-install dependencies.
- Page loads as a 404 - Make sure you are running in a folder with `mint.json`. Check the `/docs` folder

View File

@@ -57,9 +57,9 @@ yarn global add mintlify
#### Running the docs
Go to `docs` directory and run `mintlify dev`. This will start up the docs on `localhost:3000`
Go to `docs` directory and run `mint dev`. This will start up the docs on `localhost:3000`
```bash
# From the root directory
cd docs; mintlify dev;
cd docs; mint dev;
```