From edbefcc372c7ffa3f1a3410300494d9bda2e0da0 Mon Sep 17 00:00:00 2001 From: Sergey Krivtsov Date: Mon, 13 Mar 2023 14:25:11 +0400 Subject: [PATCH] fix script (#1713) --- securing_apps/topics/oidc/nodejs-adapter.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/securing_apps/topics/oidc/nodejs-adapter.adoc b/securing_apps/topics/oidc/nodejs-adapter.adoc index bf1e1742c2..fe444212ed 100644 --- a/securing_apps/topics/oidc/nodejs-adapter.adoc +++ b/securing_apps/topics/oidc/nodejs-adapter.adoc @@ -71,7 +71,7 @@ To start the `server.js` script, add the following command in the 'scripts' sect ---- "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "start" "node server.js" + "start": "node server.js" }, ----