Skip to content
Open
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ playwright-report/

# Skilld references (recreated by `skilld install`)
.skilld

.nuxt
.output
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ useSchemaOrg([

## Recommended: Vite Plugin

If you're using Vite, the [Vite plugin](/docs/head/guides/advanced/vite-plugin) optimizes your production bundle by tree-shaking server-only code and transforming head composables at build time. See the [Vite Plugin guide](/docs/head/guides/advanced/vite-plugin) for framework-specific setup.
If you're using Vite, the [Vite plugin](/docs/head/guides/build-plugins/overview) optimizes your production bundle by tree-shaking server-only code and transforming head composables at build time. See the [Build Plugins guide](/docs/head/guides/build-plugins/overview) for framework-specific setup.

## Optional: Auto-Imports

Expand Down
6 changes: 3 additions & 3 deletions docs/0.react/schema-org/guides/get-started/0.installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ useSchemaOrg([

## Recommended: Vite Plugin

If you're using Vite, the [Vite plugin](/docs/head/guides/advanced/vite-plugin) optimizes your production bundle by tree-shaking server-only code and transforming head composables at build time:
If you're using Vite, the [Vite plugin](/docs/head/guides/build-plugins/overview) optimizes your production bundle by tree-shaking server-only code and transforming head composables at build time:

```ts
import react from '@vitejs/plugin-react'
import unhead from '@unhead/react/vite'
import { Unhead } from '@unhead/react/vite'

export default defineConfig({
plugins: [react(), unhead()],
plugins: [react(), Unhead()],
})
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,14 @@ See the [Schema.org Params](/docs/schema-org/guides/core-concepts/params) for al

## Recommended: Vite Plugin

If you're using Vite, the [Vite plugin](/docs/head/guides/advanced/vite-plugin) optimizes your production bundle by tree-shaking server-only code and transforming head composables at build time:
If you're using Vite, the [Vite plugin](/docs/head/guides/build-plugins/overview) optimizes your production bundle by tree-shaking server-only code and transforming head composables at build time:

```ts [vite.config.ts]
import solid from 'vite-plugin-solid'
import unhead from '@unhead/solid-js/vite'
import { Unhead } from '@unhead/solid-js/vite'

export default defineConfig({
plugins: [unhead(), solid()],
plugins: [Unhead(), solid()],
})
```

Expand Down
6 changes: 3 additions & 3 deletions docs/0.svelte/schema-org/guides/get-started/0.installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ useSchemaOrg([

## Recommended: Vite Plugin

If you're using Vite, the [Vite plugin](/docs/head/guides/advanced/vite-plugin) optimizes your production bundle by tree-shaking server-only code and transforming head composables at build time:
If you're using Vite, the [Vite plugin](/docs/head/guides/build-plugins/overview) optimizes your production bundle by tree-shaking server-only code and transforming head composables at build time:

```ts
import { svelte } from '@sveltejs/vite-plugin-svelte'
import unhead from '@unhead/svelte/vite'
import { Unhead } from '@unhead/svelte/vite'

export default defineConfig({
plugins: [unhead(), svelte()],
plugins: [Unhead(), svelte()],
})
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,4 @@ Your app is now setup for head management, congrats!
Try next:

1. Learn more about app context in the [Wrapping Composables](/docs/typescript/head/guides/core-concepts/wrapping-composables) guide
2. Consider using the [Vite plugin](/docs/head/guides/advanced/vite-plugin)
2. Consider using the [Vite plugin](/docs/head/guides/build-plugins/overview)
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ useSchemaOrg([

## Recommended: Vite Plugin

If you're using Vite, the [Vite plugin](/docs/head/guides/advanced/vite-plugin) optimizes your production bundle by tree-shaking server-only code and transforming head composables at build time. See the [Vite Plugin guide](/docs/head/guides/advanced/vite-plugin) for framework-specific setup.
If you're using Vite, the [Vite plugin](/docs/head/guides/build-plugins/overview) optimizes your production bundle by tree-shaking server-only code and transforming head composables at build time. See the [Build Plugins guide](/docs/head/guides/build-plugins/overview) for framework-specific setup.

## Optional: Auto-Imports

Expand Down
6 changes: 3 additions & 3 deletions docs/0.vue/schema-org/guides/0.get-started/0.installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ useSchemaOrg([

## Recommended: Vite Plugin

If you're using Vite, the [Vite plugin](/docs/head/guides/advanced/vite-plugin) optimizes your production bundle by tree-shaking server-only code and transforming head composables at build time:
If you're using Vite, the [Vite plugin](/docs/head/guides/build-plugins/overview) optimizes your production bundle by tree-shaking server-only code and transforming head composables at build time:

```ts
import vue from '@vitejs/plugin-vue'
import unhead from '@unhead/vue/vite'
import { Unhead } from '@unhead/vue/vite'

export default defineConfig({
plugins: [vue(), unhead()],
plugins: [vue(), Unhead()],
})
```

Expand Down
Empty file.
Empty file added docs/6.migration-guide/1.v3.md
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ useHead(unheadInstance, {

For legacy support with Vue Meta we allowed end users to provide deprecated properties: `vmid`, `hid`, `children` and `body`.

You must update these properties to the appropriate replacement or remove them. See the [v3 migration guide](/docs/content/migration-guide/v3#legacy-property-names) for the replacements.
You must update these properties to the appropriate replacement or remove them. See the [v3 migration guide](/docs/migration-guide/v3#legacy-property-names) for the replacements.

---

Expand Down
Loading
Loading