+
+
+ This will prefetch when hovered or when it gains focus
+
+
+
+ This will prefetch when hovered/focus - or when it becomes visible
+
+
+
+```
+
+It's also possible to enable/disable these globally for your app and override them per link.
+
+For example:
+
+```ts [nuxt.config.ts]
+export default defineNuxtConfig({
+ experimental: {
+ defaults: {
+ nuxtLink: {
+ prefetch: true,
+ prefetchOn: { visibility: false, interaction: true }
+ }
+ }
+ }
+})
+```
+
+## 🗺️ Better Server Source Maps
+
+When running with `node --enable-source-maps`, you may have noticed that the source maps for the Vue files in your server build pointed to the Vite build output (something like `.nuxt/dist/server/_nuxt/index-O15BBwZ3.js`).
+
+Now, even after your Nitro build, your server source maps will reference your original source files ([#28521](https://github.com/nuxt/nuxt/pull/28521)).
+
+Note that one of the easiest ways of improving your build performance is to turn off source maps if you aren't using them, which you can do easily in your `nuxt.config`:
+
+```ts [nuxt.config.ts]
+export default defineNuxtConfig({
+ sourcemap: {
+ server: false,
+ client: true,
+ },
+})
+```
+
+## 🎁 New Features for Module Authors
+
+In the run-up to Nuxt v4, we're working on adding some key functionality for module authors, including a new `isNuxtMajorVersion` utility where required ([#27579](https://github.com/nuxt/nuxt/pull/27579)) and better inferred typing for merged module options using the new `defineNuxtModule().with()` method ([#27520](https://github.com/nuxt/nuxt/pull/27520)).
+
+## ✨ Improved Dev Warnings
+
+We no longer warn when using data fetching composables in middleware ([#28604](https://github.com/nuxt/nuxt/pull/28604)) and we warn when user components' names begin with Lazy ([#27838](https://github.com/nuxt/nuxt/pull/27838)).
+
+## 🚨 Vue TypeScript Changes
+
+For a while, in the Vue ecosystem, we've been augmenting `@vue/runtime-core` to add custom properties and more to `vue`. However, this inadvertently breaks the types for projects that augment `vue` - which is now the officially recommended and documented way to augment these interfaces (for example, [ComponentCustomProperties](https://vuejs.org/api/utility-types.html#componentcustomproperties), [GlobalComponents](https://vuejs.org/guide/extras/web-components.html#web-components-and-typescript) and [so on](https://vuejs.org/guide/typescript/options-api.html#augmenting-global-properties)).
+
+This means _all_ libraries must update their code (or it will break the types of libraries that augment `vue` instead).
+
+We've updated our types in Nuxt along these lines but you may experience issues with the latest `vue-router` when used with libraries which haven't yet done so.
+
+Please create an issue with a reproduction - I'll happily help create a PR to resolve in the upstream library in question. Or you may be able to work around the issue by creating a `declarations.d.ts` in the root of your project with the following code ([credit](https://github.com/nuxt/nuxt/pull/28542#issuecomment-2293282891) to [@BobbieGoede](https://github.com/BobbieGoede)):
+
+```ts [declarations.d.ts]
+import type {
+ ComponentCustomOptions as _ComponentCustomOptions,
+ ComponentCustomProperties as _ComponentCustomProperties,
+} from 'vue';
+
+declare module '@vue/runtime-core' {
+ interface ComponentCustomProperties extends _ComponentCustomProperties {}
+ interface ComponentCustomOptions extends _ComponentCustomOptions {}
+}
+```
+
+## ✅ Upgrading
+
+As usual, our recommendation for upgrading is to run:
+
+```sh
+npx nuxi@latest upgrade --force
+```
+
+This will refresh your lockfile as well, and ensures that you pull in updates from other dependencies that Nuxt relies on, particularly in the unjs ecosystem.
+
+## Full Release Notes
+
+::read-more
+---
+color: gray
+icon: i-simple-icons-github
+target: _blank
+to: https://github.com/nuxt/nuxt/releases/tag/v3.13.0
+---
+Read the full release notes of Nuxt `v3.13.0`.
+::
+
+A huge thank you to everyone who's been a part of this release - you are the ones who make Nuxt possible. ❤️
+
+Don't hesitate to let us know if you have any feedback or issues! 🙏
diff --git a/error.vue b/error.vue
index aa7db944c..095a3fcee 100644
--- a/error.vue
+++ b/error.vue
@@ -1,5 +1,5 @@