Skip to content

Commit d27e05d

Browse files
committed
docs: remove dead links
1 parent fe721c6 commit d27e05d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

docs/cookbook/subscriptions-external.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ todos // given an existing Ref<Todo[]>
77
const { pending } = useCollection(todoListRef, { target: todos })
88
```
99

10-
When passing a target ref, the composable will not create a new `ref()` for you, but will instead use the one you passed. It will also not return the `ref()` as a result, but instead return an object with some useful properties. You can find more about this in [the declarative subscriptions](./data-subscriptions.md) section.
10+
When passing a target ref, the composable will not create a new `ref()` for you, but will instead use the one you passed. It will also not return the `ref()` as a result, but instead return an object with some useful properties. You can find more about this in [the declarative subscriptions](../guide/realtime-data.md) section.
1111

1212
## Pinia
1313

docs/guide/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ createApp({
132132
:::warning
133133

134134
- In the [**RTDB** example](#original_rtdb), we are omitting the unsubscribe part because it requires to save the return of every listener created to later on call `this.todosRef.off` with _every single_ one of them.
135-
- In the [**Firestore** example](#original_firestore), the code above is not taking into account [Firestore references](https://firebase.google.com/docs/firestore/data-model#references) which **considerably** increases the complexity of binding and [is handled transparently](./binding-subscriptions.md#references-firestore-only) by Vuefire
135+
- In the [**Firestore** example](#original_firestore), the code above is not taking into account [Firestore references](https://firebase.google.com/docs/firestore/data-model#references) which **considerably** increases the complexity of binding and [is handled transparently](./realtime-data.md#references-firestore-only) by Vuefire
136136

137137
:::
138138

firebase.json

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
"storage": {
99
"rules": "storage.rules"
1010
},
11+
"hosting": {
12+
"public": "docs/.vitepress/dist"
13+
},
1114
"emulators": {
1215
"auth": {
1316
"port": 9099

0 commit comments

Comments
 (0)