From 819efed2c00f65295022fc564fd48c1812d764ec Mon Sep 17 00:00:00 2001 From: Davide Curletti Date: Wed, 7 Nov 2018 05:33:33 -0800 Subject: [PATCH] Fix incorrect path for ts server example (#5612) The customer-server-typescript example has a bug where the `yarn start` command has the incorrect path to the server entry point file. --- examples/custom-server-typescript/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/custom-server-typescript/package.json b/examples/custom-server-typescript/package.json index e21c7807..5e323021 100644 --- a/examples/custom-server-typescript/package.json +++ b/examples/custom-server-typescript/package.json @@ -2,7 +2,7 @@ "scripts": { "dev": "nodemon server/index.ts", "build": "next build && tsc --project tsconfig.server.json", - "start": "NODE_ENV=production node .next/production-server/index.js" + "start": "NODE_ENV=production node .next/production-server/server/index.js" }, "dependencies": { "@babel/core": "^7.1.2",