issue #1778 repair yarn start:dev and yarn run serve

This commit is contained in:
Samuel Cambien
2022-09-07 17:49:44 +02:00
parent 44489fa4e0
commit 59f9534418
2 changed files with 2 additions and 2 deletions

View File

@@ -10,6 +10,6 @@ const appConfig: AppConfig = buildAppConfig();
* Any CLI arguments given to this script are patched through to `ng serve` as well.
*/
child.spawn(
`ng serve --host ${appConfig.ui.host} --port ${appConfig.ui.port} --serve-path ${appConfig.ui.nameSpace} --ssl ${appConfig.ui.ssl} ${process.argv.slice(2).join(' ')}`,
`ng serve --host ${appConfig.ui.host} --port ${appConfig.ui.port} --serve-path ${appConfig.ui.nameSpace} --ssl ${appConfig.ui.ssl} ${process.argv.slice(2).join(' ')} --configuration development`,
{ stdio: 'inherit', shell: true }
);