The Acme UI Docs project now has Pages, user-owned site data, a docs layout wrapper, menu structure, brand assets, and the first documented component.
npm run build
Rocket writes the static output to dist/.
Check that the important Pages exist:
ls dist
ls dist/components/button
ls dist/brand
Then preview the built files:
npm run preview
Visit these paths in the preview server:
//getting-started/brand/components/buttonYour project should now look like this:
acme-ui-docs/
├── package.json
├── rocket-config.js
└── src/
├── assets/
│ ├── acme-mark.svg
│ └── acme-wordmark.svg
├── components/
│ └── AcmeButton.js
├── docsLayout.js
├── pages/
│ ├── brand.rocket.md
│ ├── getting-started.rocket.md
│ ├── index.rocket.md
│ └── components/
│ ├── button.rocket.md
│ └── index.rocket.md
└── siteData.js
The static-site chapter ends with complete static documentation output. Every file under src/ is
owned by the Acme UI Docs project, while Rocket supplies the build pipeline and reusable atlas docs
layout.