File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 "start:prod" : " yarn run build:prod && cross-env NODE_ENV=production yarn run serve:ssr" ,
1111 "start:mirador:prod" : " yarn run build:mirador && yarn run start:prod" ,
1212 "preserve" : " yarn base-href" ,
13- "serve" : " ng serve --configuration development " ,
13+ "serve" : " ts-node --project ./tsconfig.ts-node.json scripts/serve.ts " ,
1414 "serve:ssr" : " node dist/server/main" ,
1515 "analyze" : " webpack-bundle-analyzer dist/browser/stats.json" ,
1616 "build" : " ng build --configuration development" ,
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ const appConfig: AppConfig = buildAppConfig();
1010 * Any CLI arguments given to this script are patched through to `ng serve` as well.
1111 */
1212child . spawn (
13- `ng serve --host ${ appConfig . ui . host } --port ${ appConfig . ui . port } --serve-path ${ appConfig . ui . nameSpace } --ssl ${ appConfig . ui . ssl } ${ process . argv . slice ( 2 ) . join ( ' ' ) } ` ,
13+ `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 ` ,
1414 { stdio : 'inherit' , shell : true }
1515) ;
You can’t perform that action at this time.
0 commit comments