diff --git a/docs/content/docs/1.getting-started/2.installation.md b/docs/content/docs/1.getting-started/2.installation.md index 1ee9435f..564d8916 100644 --- a/docs/content/docs/1.getting-started/2.installation.md +++ b/docs/content/docs/1.getting-started/2.installation.md @@ -18,7 +18,7 @@ That's it! The Nuxt Scripts module should be downloaded and added to your Nuxt C Need some inspiration to start using Nuxt Scripts? Try out the following: 1. 🎉 Make it rain emojis with the [Confetti Tutorial](/docs/getting-started/confetti-tutorial). -2. 📚 Learn about how the [Script Loading](/docs/guides/script-loading) works. +2. 📚 Learn about how the [Script Loading](/docs/guides/script-triggers) works. 3. 🔍 Explore the [Script Registry](/scripts) for popular pre-configured third-party scripts. 3. 🚀 Load other scripts with [useScript](/docs/api/use-script) or [Global Scripts](/docs/guides/global). 4. 🔨 Fine-tune your performance and privacy with [Bundling](/docs/guides/bundling) and [Consent Management](/docs/guides/consent). diff --git a/docs/content/docs/1.getting-started/3.confetti-tutorial.md b/docs/content/docs/1.getting-started/3.confetti-tutorial.md index 5f4c4ca5..c8936a0f 100644 --- a/docs/content/docs/1.getting-started/3.confetti-tutorial.md +++ b/docs/content/docs/1.getting-started/3.confetti-tutorial.md @@ -11,7 +11,7 @@ You'll learn about the following: - What the `useScriptNpm` registry script is. - How to load the `js-confetti` script using it. - Adding types to loaded scripts. -- Using proxied functions to call the script. +- Using [proxied functions](/docs/guides/key-concepts#understanding-proxied-functions) to call the script. ## Background on useScriptNpm @@ -104,7 +104,7 @@ Now that we have a way to resolve the third-party script API, we can start using The `js-confetti` library requires us to instantiate a new instance of the `JSConfetti` class everytime it's used, the most compatible way to handle this is to wait for the script to load explicitly. -However, we can also make use of [proxied functions](/docs/guides/script-loading#Understanding-proxied-functions) if we prefer an easier to use API. Note that this will break +However, we can also make use of [proxied functions](/docs/guides/key-concepts#understanding-proxied-functions) if we prefer an easier to use API. Note that this will break when switching between pages as `new window.JSConfetti()` needs to be called between pages. ::code-group