Archived
1
0

Change default port to 8080

This commit is contained in:
Asher
2019-08-08 11:21:45 -05:00
parent 2b3e8e1a89
commit d4ed2efa71
8 changed files with 21 additions and 22 deletions

View File

@ -120,7 +120,7 @@ const startVscode = async (): Promise<void | void[]> => {
const server = new MainServer({
...options,
port: typeof args.port !== "undefined" && parseInt(args.port, 10) || 8443,
port: typeof args.port !== "undefined" && parseInt(args.port, 10) || 8080,
socket: args.socket,
}, args);