Skip to content

Commit

Permalink
fix(app): open and port flag
Browse files Browse the repository at this point in the history
fix #45
  • Loading branch information
vogloblinsky committed Jan 3, 2017
1 parent a0fd0fe commit a34b39a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -415,10 +415,10 @@ export class Application {
runWebServer(folder) {
LiveServer.start({
root: folder,
open: false,
open: this.configuration.mainData.open,
quiet: true,
logLevel: 0,
port: COMPODOC_DEFAULTS.port
port: this.configuration.mainData.port
});
}

Expand Down

0 comments on commit a34b39a

Please sign in to comment.