Skip to content

Commit 175167f

Browse files
authored
fix: remove broken link (#305)
1 parent 194a364 commit 175167f

File tree

12 files changed

+18
-20
lines changed

12 files changed

+18
-20
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<br>
22

3-
<a href="https://fastify-vite.dev/"><img src="https://github.com/fastify/fastify-vite/assets/12291/7f711a83-91df-41d5-abf9-ae4f38ed24d3" style="width: 250px"></a>
3+
<a href="https://github.com/fastify/fastify-vite/"><img src="https://github.com/fastify/fastify-vite/assets/12291/7f711a83-91df-41d5-abf9-ae4f38ed24d3" style="width: 250px"></a>
44

55
# **`@fastify/vite`**
66

@@ -16,8 +16,6 @@ This repository is also the home of `@fastify/vue` and `@fastify/react`.
1616

1717
They provide basic Nuxt and Next.js-like functionality, respectively, through `@fastify/vite`.
1818

19-
See the [full documentation suite](https://fastify-vite.dev) to learn more.
20-
2119
Official examples (low-level integration) can be found in [`examples/`](https://github.com/fastify/fastify-vite/tree/main/examples).
2220

2321
Official starters (DX-focused) using `@fastify/vue` and `@fastify/react` can be found in [`starters/`](https://github.com/fastify/fastify-vite/tree/main/starters).

docs/.vitepress/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default withMermaid({
1818
},
1919

2020
sitemap: {
21-
hostname: 'https://fastify-vite.dev',
21+
hostname: 'https://github.com/fastify/fastify-vite',
2222
},
2323

2424
/* prettier-ignore */

docs/guide/parts/links.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[react]: https://react.dev/
33
[fastify-cli]: https://github.com/fastify/fastify-cli
44
[fastify-static]: https://github.com/fastify/fastify-static
5-
[fastify-vite]: https://fastify-vite.dev
5+
[fastify-vite]: https://github.com/fastify/fastify-vite
66
[fastify]: https://fastify.dev/
77
[next]: https://nextjs.org/
88
[nuxt]: https://nuxt.com/

docs/react/route-context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export default function Index (props) {
176176

177177
As shown in the snippets above, the **route context** is accessed via the **`useRouteContext()`** hook, available via the `@fastfiy/react/client` module.
178178

179-
> Contrary to all other [virtual modules](https://fastify-vite.dev/config/react/virtual-modules), which are available via the `$app` prefix, the `useRouteContext()` hook is provided by `@fastify/react/client`. This file is responsible for defining the route context, the Valtio state and also provides a couple of helpers. It's the only part of the setup you're encouraged to avoid changing. But in highly customized setups, you could still provide your own `useRouteContext()` from a local module.
179+
> Contrary to all other [virtual modules](https://github.com/fastify/fastify-vite/blob/main/docs/config/react/virtual-modules.md), which are available via the `$app` prefix, the `useRouteContext()` hook is provided by `@fastify/react/client`. This file is responsible for defining the route context, the Valtio state and also provides a couple of helpers. It's the only part of the setup you're encouraged to avoid changing. But in highly customized setups, you could still provide your own `useRouteContext()` from a local module.
180180
181181
```js
182182
import { useRouteContext } from '@fastify/react/client'

docs/vue/route-context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ export default {
186186

187187
As shown in the snippets above, the **route context** is accessed via the **`useRouteContext()`** hook, available via the `@fastfiy/vue/client` module.
188188

189-
> Contrary to all other [virtual modules](https://fastify-vite.dev/config/vue/virtual-modules), which are available via the `$app` prefix, the `useRouteContext()` hook is provided by `@fastify/vue/client`. This file is responsible for defining the route context, the Valtio state and also provides a couple of helpers. It's the only part of the setup you're encouraged to avoid changing. But in highly customized setups, you could still provide your own `useRouteContext()` from a local module.
189+
> Contrary to all other [virtual modules](https://github.com/fastify/fastify-vite/blob/main/docs/config/vue/virtual-modules.md), which are available via the `$app` prefix, the `useRouteContext()` hook is provided by `@fastify/vue/client`. This file is responsible for defining the route context, the Valtio state and also provides a couple of helpers. It's the only part of the setup you're encouraged to avoid changing. But in highly customized setups, you could still provide your own `useRouteContext()` from a local module.
190190
191191
```js
192192
<script setup>

packages/fastify-htmx/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<br>
22

3-
**`@fastify/htmx`** is the official [**`@fastify/vite`**](https://fastify-vite.dev) renderer for HTMX.
3+
**`@fastify/htmx`** is the official [**`@fastify/vite`**](https://github.com/fastify/fastify-vite) renderer for HTMX.
44

5-
See the [documentation suite](https://fastify-vite.dev) to learn more.
5+
See the [documentation suite](https://github.com/fastify/fastify-vite) to learn more.

packages/fastify-react/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<br>
22

3-
**`@fastify/react`** is the official [**`@fastify/vite`**](https://fastify-vite.dev) renderer for React.
3+
**`@fastify/react`** is the official [**`@fastify/vite`**](https://github.com/fastify/fastify-vite) renderer for React.
44

5-
See the [documentation suite](https://fastify-vite.dev) to learn more.
5+
See the [documentation suite](https://github.com/fastify/fastify-vite) to learn more.

packages/fastify-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,5 @@
8484
"bugs": {
8585
"url": "https://github.com/fastify/fastify-vite/issues"
8686
},
87-
"homepage": "https://fastify-vite.dev/react/"
88-
}
87+
"homepage": "https://github.com/fastify/fastify-vite/tree/main/packages/fastify-react"
88+
}

packages/fastify-vite/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
This [Fastify](https://fastify.dev) plugin allows you to run Vite's development server as middleware, **expose** your [Vite](https://vitejs.dev) application to your Fastify application, with configuration hooks to **ease router integration** and **other customizations**, and also automatically serve Vite builds, inferred from a Vite configuration file.
88

9-
See the [full documentation suite](https://fastify-vite.dev) to learn more.
9+
See the [full documentation suite](https://github.com/fastify/fastify-vite) to learn more.

packages/fastify-vite/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"./utils": "./utils.js",
3131
"./plugin": "./plugin.mjs"
3232
},
33-
"homepage": "https://fastify-vite.dev/",
33+
"homepage": "https://github.com/fastify/fastify-vite",
3434
"license": "MIT",
3535
"main": "index.js",
3636
"name": "@fastify/vite",
@@ -71,4 +71,4 @@
7171
"fastify",
7272
"vite"
7373
]
74-
}
74+
}

0 commit comments

Comments
 (0)