Changes default port to 5002

This commit is contained in:
Aaron Louie 2020-01-29 11:15:13 -05:00
parent 6d3ffe8f35
commit c4fde9e438
2 changed files with 3 additions and 2 deletions

View File

@ -116,6 +116,7 @@
"serve": {
"builder": "@angular-builders/custom-webpack:dev-server",
"options": {
"port": 5002,
"customWebpackConfig": {
"path": "./webpack.config.js"
},

View File

@ -17,7 +17,7 @@ exports.config = {
}
},
directConnect: true,
baseUrl: 'http://localhost:4200/',
baseUrl: 'http://localhost:5002/',
framework: 'jasmine',
jasmineNodeOpts: {
showColors: true,
@ -30,4 +30,4 @@ exports.config = {
});
jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
}
};
};