Squidoc

快速开始

本页聚焦 一个新项目,说明它在 Squidoc 项目中的工作方式。

你将配置什么

你将学习如何创建项目、安装依赖并启动开发服务器。

发布前检查

首次发布前请确认 checkbuild 都通过。

相关阅读

配置 · 插件 · 部署

示例

npm create squidoc@latest my-docs
cd my-docs
npm run dev
---
title: API Guide
description: Learn how to use the API.
---

# API Guide

Write your documentation here.
nav: [
  { title: "Getting Started", path: "/getting-started" },
  { title: "API Guide", path: "/api-guide" },
];
npm run check
npm run build
npm run preview