From 3878455fa42368a0f1bd95578c1b4d366bd69a74 Mon Sep 17 00:00:00 2001 From: I Gusti Ngurah Satya Wikananda <33148052+satyawikananda@users.noreply.github.com> Date: Tue, 19 Oct 2021 16:36:36 +0800 Subject: [PATCH] docs(bridge): add missing colon in server target example (#1212) --- docs/content/1.getting-started/3.bridge.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/1.getting-started/3.bridge.md b/docs/content/1.getting-started/3.bridge.md index aad4eb67a7..7ceaa3c1b3 100644 --- a/docs/content/1.getting-started/3.bridge.md +++ b/docs/content/1.getting-started/3.bridge.md @@ -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" } } ```