目录 |
---|
minLevel | 1 |
---|
maxLevel | 4 |
---|
outline | false |
---|
style | none |
---|
type | list |
---|
printable | false |
---|
|
环境准备
安装Node.js v16以上的版本
配置
在创建自己的docsaurus项目前,需要配置一些npm的proxy选项,不然会报各种错误
...
代码块 |
---|
| npm config get proxy
npm config get https-proxy |
|
以上两句命令执行后返回值都应该为null,如果返回不是null,则需要进一步配置(走taobao代理,否则可能会因为网络连接超时问题连不上)
代码块 |
---|
| npm config set registry https://registry.npm.taobao.org |
|
创建项目
配置完以后,就可以直接执行命令创建自己的docusaurus网站
代码块 |
---|
| npx create-docusaurus@latest xxx classic #xxx表示项目名称,classic表示docsaurus的经典模板 |
|
...
使用npx docusaurus start运行网站
运行成功后会自动打开localhost:3000页面,可自行将项目配置github仓库,并配置域名
...