x
)<!-- Can you pin-point the command or commands that are effected by this bug? --> <!-- ✍️edit: -->
Redundant warnings from Angular CLI when trying to start angular application in dev mode.
> npx @angular/cli@v11.0.0-rc.0 new web-applications --create-application=false --strict
> cd web-applications
> yarn ng generate application support-panel --routing --style css
angular.json
and add values for baseHref
, deployUrl
under ng serve
(not ng build
) so that the app is served over http://localhost:4200/support/
and not http://localhost:4200/
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "support-panel:build",
"baseHref": "/support/",
"deployUrl": "/support/"
},
> yarn ng serve --project support-panel
<pre><code> Option "baseHref" is deprecated: Use the "baseHref" option in the browser builder instead. Option "deployUrl" is deprecated: Use the "deployUrl" option in the browser builder instead. </code></pre>
<pre><code> $ ng version
Angular CLI: 11.0.0-rc.0 Node: 15.0.1 OS: darwin x64
Angular: 11.0.0-rc.0 ... animations, cli, common, compiler, compiler-cli, core, forms ... platform-browser, platform-browser-dynamic, router Ivy Workspace: Yes
@angular-devkit/architect 0.1100.0-rc.0 @angular-devkit/build-angular 0.1100.0-rc.0 @angular-devkit/core 11.0.0-rc.0 @angular-devkit/schematics 11.0.0-rc.0 @schematics/angular 11.0.0-rc.0 @schematics/update 0.1100.0-rc.0 rxjs 6.6.3 typescript 4.0.3
Done in 1.00s. </code></pre>
Anything else relevant?
This issue has been automatically locked due to inactivity. Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
<sub>This action has been performed automatically by a bot.</sub>