Skip to content

Commit a6e737e

Browse files
authored
docs: update nitro.unjs.io links to nitro.build (#571)
1 parent 18601e8 commit a6e737e

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

docs/content/blog/1.beta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ You can sign up for free and start building full-stack Nuxt applications at [adm
8484

8585
## Why NuxtHub?
8686

87-
Starting with version 3, Nuxt is a complete full-stack framework thanks to its open server engine called [Nitro](https://nitro.unjs.io). It allows you to have hot module replacement on the server without rebuilding your Vue application, outstanding performance as well as deploying to many different hosting providers with zero configuration. Read more about it on the blog post: [Nuxt on the Edge](https://nuxt.com/blog/nuxt-on-the-edge).
87+
Starting with version 3, Nuxt is a complete full-stack framework thanks to its open server engine called [Nitro](https://nitro.build). It allows you to have hot module replacement on the server without rebuilding your Vue application, outstanding performance as well as deploying to many different hosting providers with zero configuration. Read more about it on the blog post: [Nuxt on the Edge](https://nuxt.com/blog/nuxt-on-the-edge).
8888

8989
With this in mind, we wanted to provide you with a reliable platform to build and deploy your next idea while keeping the best developer experience.
9090

docs/content/changelog/server-cache.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ We are excited to announce that we have added a new page to your NuxtHub project
2121
:img{src="/images/changelog/server-cache.png" alt="NuxtHub Deployment Details" width="915" height="515"}
2222

2323
It works with:
24-
- [`cachedEventHandler`](https://nitro.unjs.io/guide/cache#cached-event-handlers)
25-
- [`cachedFunction`](https://nitro.unjs.io/guide/cache#cached-functions)
26-
- [`routeRules`](https://nitro.unjs.io/guide/cache#caching-route-rules)
24+
- [`cachedEventHandler`](https://nitro.build/guide/cache#cached-event-handlers)
25+
- [`cachedFunction`](https://nitro.build/guide/cache#cached-functions)
26+
- [`routeRules`](https://nitro.build/guide/cache#caching-route-rules)
2727

2828
::callout{to="/docs/features/cache" icon="i-lucide-book"}
2929
Learn more about server cache.

docs/content/docs/2.features/cache.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ navigation.title: Cache
44
description: Learn how to cache Nuxt pages, API routes and functions in with NuxtHub cache storage.
55
---
66

7-
NuxtHub Cache is powered by [Nitro's cache storage](https://nitro.unjs.io/guide/cache#customize-cache-storage) and uses [Cloudflare Workers KV](https://developers.cloudflare.com/kv) as the cache storage. It allows you to cache API routes, server functions, and pages in your application.
7+
NuxtHub Cache is powered by [Nitro's cache storage](https://nitro.build/guide/cache#customize-cache-storage) and uses [Cloudflare Workers KV](https://developers.cloudflare.com/kv) as the cache storage. It allows you to cache API routes, server functions, and pages in your application.
88

99
## Getting Started
1010

@@ -19,7 +19,7 @@ export default defineNuxtConfig({
1919
```
2020

2121
::note
22-
This option will configure [Nitro's cache storage](https://nitro.unjs.io/guide/cache#customize-cache-storage) to use [Cloudflare Workers KV](https://developers.cloudflare.com/kv) as well as creating a new storage namespace for your project when you deploy it.
22+
This option will configure [Nitro's cache storage](https://nitro.build/guide/cache#customize-cache-storage) to use [Cloudflare Workers KV](https://developers.cloudflare.com/kv) as well as creating a new storage namespace for your project when you deploy it.
2323
::
2424

2525
Once your Nuxt project is deployed, you can manage your cache entries in the `Cache` section of your project in the [NuxtHub admin](https://admin.hub.nuxt.com/).
@@ -48,8 +48,8 @@ export default cachedEventHandler((event) => {
4848

4949
The above example will cache the response of the `/api/cached-route` route for 1 hour. The `getKey` function is used to generate the key for the cache entry.
5050

51-
::note{to="https://nitro.unjs.io/guide/cache#options"}
52-
Read more about [Nitro Cache options](https://nitro.unjs.io/guide/cache#options).
51+
::note{to="https://nitro.build/guide/cache#options"}
52+
Read more about [Nitro Cache options](https://nitro.build/guide/cache#options).
5353
::
5454

5555
## Server Functions Caching
@@ -80,7 +80,7 @@ The above example will cache the result of the `getRepoStarCached` function for
8080
::important
8181
It is important to note that the `event` argument should always be the first argument of the cached function. Nitro leverages `event.waitUntil` to keep the instance alive while the cache is being updated while the response is sent to the client.
8282
:br
83-
[Read more about this in the Nitro docs](https://nitro.unjs.io/guide/cache#edge-workers).
83+
[Read more about this in the Nitro docs](https://nitro.build/guide/cache#edge-workers).
8484
::
8585

8686
## Routes Caching
@@ -148,7 +148,7 @@ await useStorage('cache').clear('nitro:handlers')
148148
```
149149

150150

151-
::note{to="https://nitro.unjs.io/guide/cache"}
151+
::note{to="https://nitro.build/guide/cache"}
152152
Read more about Nitro Cache.
153153
::
154154

docs/content/docs/2.features/vectorize.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ export default defineEventHandler(async (event) => {
873873

874874
### Bulk generation and import
875875

876-
This example bulk generates vectors using a text embeddings AI model for all data within a database table, using [Nitro tasks](https://nitro.unjs.io/guide/tasks). You can run the task via Nuxt DevTools.
876+
This example bulk generates vectors using a text embeddings AI model for all data within a database table, using [Nitro tasks](https://nitro.build/guide/tasks). You can run the task via Nuxt DevTools.
877877

878878
```ts [server/tasks/generate-embeddings.ts]
879879
import { jobs } from "../database/schema";

docs/content/docs/3.recipes/2.drizzle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ We also export the `sql`, `eq`, `and`, and `or` functions from `drizzle-orm` to
131131
132132
### Seed the database (Optional)
133133
134-
You can add a server task to populate your database with initial data. This uses [Nitro Tasks](https://nitro.unjs.io/guide/tasks), which is currently an experimental feature.
134+
You can add a server task to populate your database with initial data. This uses [Nitro Tasks](https://nitro.build/guide/tasks), which is currently an experimental feature.
135135
136136
1. Update your nuxt.config.js:
137137

0 commit comments

Comments
 (0)