Skip to content
This repository was archived by the owner on Sep 4, 2020. It is now read-only.

Commit 3005788

Browse files
fix(#7): fix default port
1 parent 0e61a64 commit 3005788

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ enableProdMode();
1616
// Express server
1717
const app = express();
1818

19-
const PORT = process.env.PORT || 4000;
19+
const PORT = process.env.PORT || 8000;
2020
const DIST_FOLDER = join(process.cwd(), 'dist');
2121

2222
// * NOTE :: leave this as require() since this file is built Dynamically from webpack

0 commit comments

Comments
 (0)