docs(bridge): add missing colon in server target example (#1212)

This commit is contained in:
I Gusti Ngurah Satya Wikananda 2021-10-19 16:36:36 +08:00 committed by GitHub
parent 5e903ae176
commit 3878455fa4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,7 +75,7 @@ For all other situations, you can use the normal `nuxt build` command.
{
"scripts": {
"build": "nuxt build",
"start" "node .output/server/index.mjs"
"start": "node .output/server/index.mjs"
}
}
```