File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,14 @@ export default defineConfig({
130
130
text : 'Options API' ,
131
131
link : '/guide/options-api-realtime-data' ,
132
132
} ,
133
+ {
134
+ text : 'SSR' ,
135
+ link : '/guide/ssr' ,
136
+ } ,
137
+ {
138
+ text : 'Nuxt' ,
139
+ link : '/guide/nuxt' ,
140
+ } ,
133
141
// {
134
142
// text: 'Querying the database',
135
143
// link: '/guide/querying',
Original file line number Diff line number Diff line change 1
1
# Nuxt.js
2
2
3
- WIP
3
+ ::: warn
4
+ The Nuxt module and this docs are a WIP. Things might not work yet.
5
+ :::
6
+
7
+ Install
8
+
9
+ ``` bash
10
+ npm install nuxt-vuefire
11
+ ```
12
+
13
+ Add it to your nuxt config:
14
+
15
+ ``` ts
16
+ import { defineNuxtConfig } from ' nuxt/config'
17
+ import VueFire from ' nuxt-vuefire'
18
+
19
+ export default defineNuxtConfig ({
20
+ modules: [VueFire , {
21
+ /* options */
22
+ }],
23
+ })
24
+ ```
You can’t perform that action at this time.
0 commit comments