命令
通过本章节,你可以了解到 Rspress 内置的命令有哪些,以及如何使用这些命令。
rspress dev
rspress dev
命令用于启动一个本地开发服务器,提供一个文档进行预览和调试的开发环境。
Usage: rspress dev [root] [options]
Options:
root 指定文档根目录,默认为当前工作目录下的 docs 目录,可选
-c --config <config> 指定配置文件路径,可以为相对路径或绝对路径
--port <port> 指定端口号
--host <host> 指定 host
-h, --help 显示命令帮助
rspress build
rspress build
命令用于构建出针对生产环境的文档产物。
Usage: rspress build [root] [options]
Options:
root 指定文档根目录,默认为当前工作目录下的 docs 目录,可选
-c --config <config> 指定配置文件路径,可以为相对路径或绝对路径
-h, --help 显示命令帮助
rspress preview
rspress preview
命令用于在本地预览 rspress build
命令构建出的产物。
Usage: rspress preview [options]
Options:
-c --config <config> 指定配置文件路径,可以为相对路径或绝对路径
--port <port> 指定端口号
--host <host> 指定 host
-h, --help 显示命令帮助
rspress update
rspress update
命令用于将 rspress 相关的依赖更新到最新版本。