https://github.com/mrxiaom/www.mcio.dev
NeoWorld 服务器 官网与文档站点
https://github.com/mrxiaom/www.mcio.dev
mc minecraft
Last synced: 10 months ago
JSON representation
NeoWorld 服务器 官网与文档站点
- Host: GitHub
- URL: https://github.com/mrxiaom/www.mcio.dev
- Owner: MrXiaoM
- License: mit
- Created: 2025-02-03T09:07:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-02T11:38:11.000Z (about 1 year ago)
- Last Synced: 2025-05-07T09:56:52.835Z (about 1 year ago)
- Topics: mc, minecraft
- Language: Vue
- Homepage: https://www.mcio.dev
- Size: 869 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- Contributing: docs/contributing.md
- License: LICENSE
Awesome Lists containing this project
README
# NeoWorld
服务器文档使用主题 [vuepress-theme-vdoing](https://github.com/xugaoyi/vuepress-theme-vdoing)。
## 构建
需要 nodejs 环境,以及使用 yarn 管理依赖。
先打包 vdoing 主题
```shell
cd vdoing
npm pack
cd ..
```
然后构建文档
```shell
yarn
# Linux 执行这个
yarn build
# Windows 执行这个
yarn build:win
```
将文档复制到 `public/docs` 文件夹,以 `public` 文件夹为根目录,使用任意方式发布静态网页即可。
```shell
mkdir "public/docs"
rm -r public/docs/*
cp -r docs/.vuepress/dist/* public/docs
```