Skip to content

Commit 586a866

Browse files
Update Nitro documentation links (#1112)
Co-authored-by: Sarah <gerrardsarah@gmail.com>
1 parent b70a8a1 commit 586a866

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

src/routes/configuration/environment-variables.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function MyComponent() {
5959
6060
## Private Environment Variables
6161
62-
These variables should only be accessed in your backend code, so it's best not to use the `VITE_` prefix for them. Instead, use `process.env` to access them. Depending on the [Nitro preset](https://nitro.unjs.io/deploy) chosen, they'll be made available automatically or they will require an external dependency such as [dotenv](https://www.npmjs.com/package/dotenv).
62+
These variables should only be accessed in your backend code, so it's best not to use the `VITE_` prefix for them. Instead, use `process.env` to access them. Depending on the [Nitro preset](https://nitro.build/deploy) chosen, they'll be made available automatically or they will require an external dependency such as [dotenv](https://www.npmjs.com/package/dotenv).
6363
6464
```jsx
6565
DB_HOST="somedb://192.110.0"

src/routes/solid-start/advanced/websocket.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: WebSocket endpoint
33
---
44

55
WebSocket endpoint may be included by passing the ws handler file you specify in your start config.
6-
Note that this feature is [experimental on the Nitro server](https://nitro.unjs.io/guide/websocket#opt-in-to-the-experimental-feature) and its config may change in future releases of SolidStart. Use it with caution.
6+
Note that this feature is [experimental on the Nitro server](https://nitro.build/guide/websocket#opt-in-to-the-experimental-feature) and its config may change in future releases of SolidStart. Use it with caution.
77

88
```ts title="./app.config.ts"
99
import { defineConfig } from "@solidjs/start/config";

src/routes/solid-start/building-your-application/route-prerendering.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ export default defineConfig({
3131
});
3232
```
3333

34-
For more information on prerender options, check out [Nitro's documentation](https://nitro.unjs.io/config#prerender)
34+
For more information on prerender options, check out [Nitro's documentation](https://nitro.build/config#prerender)

src/routes/solid-start/getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Your application should now be running locally on port 3000.
137137
You can view it by navigating to [http://localhost:3000](http://localhost:3000).
138138

139139
:::info
140-
SolidStart uses [Vinxi](https://vinxi.vercel.app/) both for starting a development server with [Vite](https://vitejs.dev/) and for building and starting a production server with [Nitro](https://nitro.unjs.io/).
140+
SolidStart uses [Vinxi](https://vinxi.vercel.app/) both for starting a development server with [Vite](https://vitejs.dev/) and for building and starting a production server with [Nitro](https://nitro.build/).
141141

142142
When you run your application, you are actually running `vinxi dev` under the hood.
143143
You can read more about the Vinxi CLI, and how it can be configured [here](https://vinxi.vercel.app/api/cli.html).

src/routes/solid-start/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Overview
55
# Overview
66

77
SolidStart is an open source meta-framework designed to unify components that make up a web application.
8-
It is built on top of [Solid](/) and uses [Vinxi](https://vinxi.vercel.app/), an agnostic Framework Bundler that combines the power of [Vite](https://vitejs.dev) and [Nitro](https://nitro.unjs.io/).
8+
It is built on top of [Solid](/) and uses [Vinxi](https://vinxi.vercel.app/), an agnostic Framework Bundler that combines the power of [Vite](https://vitejs.dev) and [Nitro](https://nitro.build/).
99

1010
Start avoids being opinionated by only providing the fewest pieces to get you started.
1111
While templates are available that include many of the expected tools, SolidStart itself does not ship with a Router or Metadata library.

src/routes/solid-start/reference/config/define-config.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,25 +44,25 @@ export default defineConfig({
4444

4545
## Configuring Nitro
4646

47-
SolidStart uses [Nitro](https://nitro.unjs.io/) to run on a number of platforms.
47+
SolidStart uses [Nitro](https://nitro.build/) to run on a number of platforms.
4848
The `server` option exposes some Nitro options including the build and deployment presets.
49-
An overview of all available presets is available in the [Deploy section of the Nitro documentation](https://nitro.unjs.io/deploy).
49+
An overview of all available presets is available in the [Deploy section of the Nitro documentation](https://nitro.build/deploy).
5050

5151
Some common ones include:
5252

5353
**Servers**
5454

55-
- [Node.js Server](https://nitro.unjs.io/deploy/runtimes/node#handler-advanced) (`node`) (Default)
56-
- [Deno Server](https://nitro.unjs.io/deploy/runtimes/deno) (`deno_server`)
55+
- [Node.js Server](https://nitro.build/deploy/runtimes/node#handler-advanced) (`node`) (Default)
56+
- [Deno Server](https://nitro.build/deploy/runtimes/deno) (`deno_server`)
5757
- [Bun Server](https://nitro.build/deploy/runtimes/bun) (`bun`)
5858

5959
**Providers**
6060

61-
- [Netlify Functions and Edge](https://nitro.unjs.io/deploy/providers/netlify) (`netlify`, `netlify-edge`)
62-
- [Vercel Functions and Edge](https://nitro.unjs.io/deploy/providers/vercel) (`vercel`, `vercel-edge`)
63-
- [AWS Lambda and Lambda@Edge](https://nitro.unjs.io/deploy/providers/aws) (`aws_lambda`)
64-
- [Cloudflare Workers and Pages](https://nitro.unjs.io/deploy/providers/cloudflare) (`cloudflare_pages`, `cloudflare_module`)
65-
- [Deno Deploy](https://nitro.unjs.io/deploy/providers/deno-deploy) (`deno_deploy`)
61+
- [Netlify Functions and Edge](https://nitro.build/deploy/providers/netlify) (`netlify`, `netlify-edge`)
62+
- [Vercel Functions and Edge](https://nitro.build/deploy/providers/vercel) (`vercel`, `vercel-edge`)
63+
- [AWS Lambda and Lambda@Edge](https://nitro.build/deploy/providers/aws) (`aws_lambda`)
64+
- [Cloudflare Workers and Pages](https://nitro.build/deploy/providers/cloudflare) (`cloudflare`, `cloudflare_pages`, `cloudflare_module`)
65+
- [Deno Deploy](https://nitro.build/deploy/providers/deno-deploy) (`deno_deploy`)
6666

6767
**Static site generation**
6868

src/routes/solid-start/reference/entrypoints/app-config.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: app.config.ts
33
---
44

55
The `app.config.ts` is the root of every SolidStart app and the main point of configuration.
6-
This file exports a configuration for SolidStart, [Vinxi](https://vinxi.vercel.app/), [Vite](https://vitejs.dev) and [Nitro](https://nitro.unjs.io).
6+
This file exports a configuration for SolidStart, [Vinxi](https://vinxi.vercel.app/), [Vite](https://vitejs.dev) and [Nitro](https://nitro.build/).
77
The easiest way to generate a configuration is to use the [`defineConfig`](/solid-start/reference/config/define-config) helper.
88

99
Here [`defineConfig`](/solid-start/reference/config/define-config) is used to create a minimal configuration with default settings.

0 commit comments

Comments
 (0)