Skip to content

Commit

Permalink
fix(docs): Node version should be a string
Browse files Browse the repository at this point in the history
  • Loading branch information
luc122c authored Aug 9, 2023
1 parent e505c0b commit 37151de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/content/2.deploy/providers/firebase.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ You can set custom Node.js version in configuration:
```ts [nitro.config.ts]
export default defineNitroConfig({
firebase: {
nodeVersion: 18 // Can be 16 or 18 or 20
nodeVersion: "18" // Can be "16" or "18" or "20"
},
});
```
Expand All @@ -215,7 +215,7 @@ export default defineNitroConfig({
export default defineNuxtConfig({
nitro: {
firebase: {
nodeVersion: 18 // Can be 16 or 18 or 20
nodeVersion: "18" // Can be "16" or "18" or "20"
},
},
});
Expand Down

0 comments on commit 37151de

Please sign in to comment.