mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-22 06:41:45 +08:00
This commit updates the application builder to output files in a standardized manner. The builder will output a `browser` directory for all the files that can be accessible by the browser, and a `server` directory that contains the SSR application. Both of these directories are created as children in the configured `outputPath`. Stats and license files will be outputted directly in the configured `outputPath`. Example of output: ``` 3rdpartylicenses.txt ├── browser │ ├── chunk-2XJVAMHT.js │ ├── favicon.ico │ ├── index.html │ ├── main-6JLMM7WW.js │ ├── polyfills-4UVFGIFL.js │ └── styles-5INURTSO.css └── server ├── chunk-4ZCEIHD4.mjs ├── chunk-PMR7BAU4.mjs ├── chunk-TSP6W7K5.mjs ├── index.server.html ├── main.server.mjs └── server.mjs ```