Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ const guideSidebar = [
items: [
{ text: 'Getting Started', link: '/guide/' },
{ text: 'Creating a Project', link: '/guide/create' },
{ text: 'Migrate to Vite+', link: '/guide/migrate' },
{
text: 'Migrate to Vite+',
link: '/guide/migrate',
items: [{ text: 'Migration Rules', link: '/guide/migrate-rules' }],
},
{ text: 'Installing Dependencies', link: '/guide/install' },
{ text: 'Environment', link: '/guide/env' },
{ text: 'Installer Environment Variables', link: '/guide/installer-env-vars' },
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/github-actions-cache.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default defineConfig({
});
```

This guide assumes each task already hits locally. If a task misses, fix its tracking config in `vite.config.ts` before adding the GitHub Actions cache steps. See [Automatic Data Tracking](/guide/automatic-data-tracking) and [`run.tasks`](/config/run#tasks).
This guide assumes each task already hits locally. If a task misses, fix its tracking config in `vite.config.ts` before adding the GitHub Actions cache steps. See [Automatic Data Tracking](/guide/automatic-data-tracking) and [`run.tasks`](/config/run#run-tasks).

Run each task twice:

Expand Down Expand Up @@ -129,7 +129,7 @@ If GitHub restores a cache but Vite Task prints a cache miss, the workflow resto

## Keep Task Tracking Stable

If GitHub restores a cache but `vp run` prints a cache miss, fix the task fingerprint before changing the Actions cache key. See [Automatic Data Tracking](/guide/automatic-data-tracking) and [`run.tasks`](/config/run#tasks).
If GitHub restores a cache but `vp run` prints a cache miss, fix the task fingerprint before changing the Actions cache key. See [Automatic Data Tracking](/guide/automatic-data-tracking) and [`run.tasks`](/config/run#run-tasks).

## Choose A Cache Key

Expand Down
4 changes: 2 additions & 2 deletions docs/guide/installer-env-vars.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ These variables configure the installed Vite+ CLI. `VP_HOME` (above) also applie

- **Purpose**: Node.js distribution mirror URL
- **Default**: `https://nodejs.org/dist`
- **Details**: [Custom Node.js Mirror](/guide/env#custom-nodejs-mirror)
- **Details**: [Custom Node.js Mirror](/guide/env#custom-node-js-mirror)

### `VP_NODE_VERSION`

Expand All @@ -98,7 +98,7 @@ These variables configure the installed Vite+ CLI. `VP_HOME` (above) also applie
- **Purpose**: Skip PGP signature verification of Node.js downloads
- **Values**: Any non-empty value
- **Default**: None (verification enabled)
- **Details**: [Node.js Signature Verification](/guide/env#nodejs-signature-verification)
- **Details**: [Node.js Signature Verification](/guide/env#node-js-signature-verification)

### `VP_SHELL`

Expand Down
Loading