Skip to content

Commit 329d77a

Browse files
committed
docs: broken links
1 parent 9d1cb4e commit 329d77a

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

docs/content/docs/1.guides/1.warmup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Nuxt Scripts will use this time to warmup the script by inserting a `preload` ta
2121
<link rel="preload" href="/script.js" as="script" fetchpriority="low">
2222
```
2323

24-
The behavior is only applied when we are using the `client` or `onNuxtReady` [Script Triggers](/docs/guides/scripts-triggers).
24+
The behavior is only applied when we are using the `client` or `onNuxtReady` [Script Triggers](/docs/guides/script-triggers).
2525
To customize the behavior further we can use the `warmupStrategy` option.
2626

2727
## `warmupStrategy`

docs/content/docs/1.guides/4.global.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ $scripts.myScript // { $script, instance }
8989

9090
The `globals` configuration will be used to create a virtual Nuxt plugin that loads in the script using the `useScript` composable.
9191

92-
As `useScript` is being used under the hood, it's important to understand the defaults and behavior of the [useScript](/api/use-script) composable..
92+
As `useScript` is being used under the hood, it's important to understand the defaults and behavior of the [useScript](/docs/api/use-script) composable..
9393

9494
::code-group
9595

docs/content/scripts/tracking/google-tag-manager.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Please follow the [Registry Scripts](/docs/guides/registry-scripts) guide to lea
8989

9090
### Guide: Sending Page Events
9191

92-
If you'd like to manually send page events to Google Tag Manager, you can use the `proxy` with the [useScriptEventPage](/docs/api/use-script-event-tag) composable.
92+
If you'd like to manually send page events to Google Tag Manager, you can use the `proxy` with the [useScriptEventPage](/docs/api/use-script-event-page) composable.
9393
This composable will trigger the provided function on route change after the page title has been updated.
9494

9595
```ts
@@ -174,4 +174,4 @@ function sendConversion() {
174174

175175
`useScriptGoogleTagManager` initialize Google Tag Manager by itself. This means it pushes the `js`, `config` and the `gtm.start` events for you.
176176

177-
If you need to configure GTM before it starts. For example, (setting the consent mode)[https://developers.google.com/tag-platform/security/guides/consent?hl=fr&consentmode=basic]. You can use the `onBeforeGtmStart` hook which is run right before we push the `gtm.start` event into the dataLayer.
177+
If you need to configure GTM before it starts. For example, (setting the consent mode)[https://developers.google.com/tag-platform/security/guides/consent?hl=fr&consentmode=basic]. You can use the `onBeforeGtmStart` hook which is run right before we push the `gtm.start` event into the dataLayer.

docs/nuxt.config.ts

-4
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,6 @@ export default defineNuxtConfig({
124124
},
125125
},
126126

127-
typescript: {
128-
strict: false,
129-
},
130-
131127
hooks: {
132128
// Define `@nuxt/ui` components as global to use them in `.md` (feel free to add those you need)
133129
'components:extend': (components) => {

0 commit comments

Comments
 (0)