I created a new angular6 application using angular cli and then type :
ng generate universal
to add universal support.
I works fine but I wonder why it added
"server": { "builder": "@angular-devkit/build-angular:server", "options": { "outputPath": "dist/VulogDeploy-server", "main": "ClientApp/main.server.ts", "tsConfig": "ClientApp/tsconfig.server.json" } } inside angular.json file. Is there another cli command to generate server app ?
What I try to have a look to the doc I see they are creating a webpack config file and use a webpack command to generate server app.
what is the good way to continue after execution of the ng generate universal command ?
ng build --app server. If I'm not wrong, the webpack uses the generated output to bundle server.ts