@next-md-blog/core 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,10 +14,18 @@ Peers: `next@^16`, `react@^19`, `react-dom@^19`.
|
|
|
14
14
|
|
|
15
15
|
- **Published docs:** [https://www.next-md-blog.com](https://www.next-md-blog.com)
|
|
16
16
|
- **Live demos:** [demo.next-md-blog.com](https://demo.next-md-blog.com) (single locale) · [demo.i18n.next-md-blog.com](https://demo.i18n.next-md-blog.com) (i18n)
|
|
17
|
-
- **Vercel:** single locale [](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fnext-md-blog%
|
|
17
|
+
- **Vercel:** single locale [](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fnext-md-blog%2Fnext-md-blog%2Ftree%2Fmain%2Ftemplates%2Fsingle%2F) · i18n [](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fnext-md-blog%2Fnext-md-blog%2Ftree%2Fmain%2Ftemplates%2Fi18n)
|
|
18
18
|
- **Source & issues:** [github.com/next-md-blog/next-md-blog](https://github.com/next-md-blog/next-md-blog)
|
|
19
19
|
|
|
20
|
-
To build the docs locally
|
|
20
|
+
To build the docs locally:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
git clone https://github.com/next-md-blog/next-md-blog.git
|
|
24
|
+
cd next-md-blog
|
|
25
|
+
pnpm install && pnpm dev:docs
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Then open [http://localhost:5101](http://localhost:5101).
|
|
21
29
|
|
|
22
30
|
Entry points in the repo: [Home / overview](https://github.com/next-md-blog/next-md-blog/blob/main/docs/content/index.mdx), [API reference](https://github.com/next-md-blog/next-md-blog/blob/main/docs/content/api-reference.mdx).
|
|
23
31
|
|