Skip to contentSkip to Content
ComponentsBuildArtifact

BuildArtifact

Summarize the files, directories, and generated routes produced by a Folio command.

API

PropTypeDefaultDescription
titlestring"Build artifacts"Panel title.
descriptionstringOptional summary.
itemsBuildArtifactItem[]Artifact rows.

BuildArtifactItem supports path, kind, and description.

Example

Generated output

The build creates an intermediate app and final static files.

.build/workspace

Intermediate Nextra project with generated MDX.

_site/static

Deployable static site.

_site/llms.txtllm

Summary file for AI coding assistants.

<BuildArtifact title="Generated output" items={[ { path: ".build/", kind: "workspace", description: "Intermediate Nextra project." }, { path: "_site/", kind: "static", description: "Deployable static output." }, ]} />