v18.0.0-next.3
Pre-release
Pre-release
·
2868 commits
to main
since this release
18.0.0-next.3 (2024-04-17)
@angular/cli
| Commit | Description |
|---|---|
remove ng doc command |
@angular-devkit/build-angular
Breaking Changes
@angular/cli
- The
ng doccommand has been removed without a replacement. To perform searches, please visit www.angular.dev
@angular-devkit/build-angular
-
By default, the index.html file is no longer emitted in the browser directory when using the application builder with SSR. Instead, an index.csr.html file is emitted. This change is implemented because in many cases server and cloud providers incorrectly treat the index.html file as a statically generated page. If you still require the old behavior, you can use the
indexoption to specify theoutputfile name."architect": { "build": { "builder": "@angular-devkit/build-angular:application", "options": { "outputPath": "dist/my-app", "index": { "input": "src/index.html", "output": "index.html" } } } }