From 2b64450f4347b95d740723e3d9c6ecb3d9692621 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20W=C3=B3jtowicz?= Date: Mon, 9 Sep 2024 17:33:11 +0200 Subject: [PATCH] fix: Update production cmd in package.json --- examples/common_nestjs_remix/apps/api/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/common_nestjs_remix/apps/api/package.json b/examples/common_nestjs_remix/apps/api/package.json index ba5f148..3694f24 100644 --- a/examples/common_nestjs_remix/apps/api/package.json +++ b/examples/common_nestjs_remix/apps/api/package.json @@ -12,7 +12,7 @@ "start:dev": "nest start --watch", "dev": "nest start --watch", "start:debug": "nest start --debug --watch", - "start:prod": "node dist/main", + "start:prod": "node dist/src/main", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "test": "jest", "test:watch": "jest --watch",