Compiles an Angular app into an output directory named dist/ at the given output path. Must be executed from within a workspace directory.
ng build <project> [options]
ng b <project> [options]
The command can be used to build a project of type "application" or "library". When used to build a library, a different builder is invoked, and only the ts-config
, configuration
, and watch
options are applied. All other options apply only to building applications.
The application builder uses the webpack build tool, with default configuration options specified in the workspace configuration file (angular.json
) or with a named alternative configuration. A "production" configuration is created by default when you use the CLI to create the project, and you can use that configuration by specifying the --configuration="production"
or the --prod
option.
The configuration options generally correspond to the command options. You can override individual configuration defaults by specifying the corresponding options on the command line. The command can accept option names given in either dash-case or camelCase. Note that in the configuration file, you must specify names in camelCase.
Some additional options can only be set through the configuration file, either by direct editing or with the ng config
command. These include assets
, styles
, and scripts
objects that provide runtime-global resources to include in the project. Resources in CSS, such as images and fonts, are automatically written and fingerprinted at the root of the output folder.
For further details, see Workspace Configuration.
Argument | Description | Value Type |
---|---|---|
<project> | The name of the project to build. Can be an application or a library. | string |
Option | Description | Value Type | Default Value |
---|---|---|---|
--allowed-common-js-dependencies | A list of CommonJS packages that are allowed to be used without a build time warning. | array | |
--aot | Build using Ahead of Time compilation. | boolean | false |
--base-href | Base url for the application being built. | string | |
--build-optimizer | Enables '@angular-devkit/build-optimizer' optimizations when using the 'aot' option. | boolean | false |
--common-chunk | Generate a seperate bundle containing code used across multiple bundles. | boolean | true |
--configuration | One or more named builder configurations as a comma-separated list as specified in the "configurations" section of angular.json. The builder uses the named configurations to run the given target. For more information, see https://angular.io/guide/workspace-config#alternate-build-configurations. Setting this explicitly overrides the "--prod" flag. Aliases: -c | string | |
--cross-origin | Define the crossorigin attribute setting of elements that provide CORS support. | none|anonymous|use-credentials | none |
--delete-output-path | Delete the output path before building. | boolean | true |
--deploy-url | URL where files will be deployed. | string | |
--experimental-rollup-pass | Concatenate modules with Rollup before bundling them with Webpack. | boolean | false |
--extract-css | Deprecated: Deprecated since version 11.0. No longer required to disable CSS extraction for HMR. Extract CSS from global styles into '.css' files instead of '.js'. | boolean | true |
--extract-licenses | Extract all licenses in a separate file. | boolean | false |
--fork-type-checker | Run the TypeScript type checker in a forked process. | boolean | true |
--help | Shows a help message for this command in the console. | true|false|json|JSON | false |
--i18n-file | Deprecated: Use 'locales' object in the project metadata instead. Localization file to use for i18n. | string | |
--i18n-format | Deprecated: No longer needed as the format will be determined automatically. Format of the localization file specified with --i18n-file. | string | |
--i18n-locale | Deprecated: Use 'localize' instead. Locale to use for i18n. | string | |
--i18n-missing-translation | How to handle missing translations for i18n. | warning|error|ignore | warning |
--index | Configures the generation of the application's HTML index. | string | |
--lazy-modules | Deprecated: 'SystemJsNgModuleLoader' is deprecated, and this is part of its usage. Use 'import()' syntax instead. List of additional NgModule files that will be lazy loaded. Lazy router modules will be discovered automatically. | array | |
--localize | Translate the bundles in one or more locales. | boolean | |
--main | The full path for the main entry point to the app, relative to the current workspace. | string | |
--named-chunks | Use file name for lazy loaded chunks. | boolean | true |
--ngsw-config-path | Path to ngsw-config.json. | string | |
--optimization | Enables optimization of the build output. Including minification of scripts and styles, tree-shaking, dead-code elimination, inlining of critical CSS and fonts inlining. For more information, see https://angular.io/guide/workspace-config#optimization-configuration. | boolean | false |
--output-hashing | Define the output filename cache-busting hashing mode. | none|all|media|bundles | none |
--output-path | The full path for the new output directory, relative to the current workspace. By default, writes output to a folder named dist/ in the current project. | string | |
--poll | Enable and define the file watching poll time period in milliseconds. | number | |
--polyfills | The full path for the polyfills file, relative to the current workspace. | string | |
--preserve-symlinks | Do not use the real path when resolving modules. If unset then will default to | boolean | |
--prod | Shorthand for "--configuration=production". Set the build configuration to the production target. By default, the production target is set up in the workspace configuration such that all builds make use of bundling, limited tree-shaking, and also limited dead code elimination. | boolean | |
--progress | Log progress to the console while building. | boolean | true |
--resources-output-path | The path where style resources will be placed, relative to outputPath. | string | |
--service-worker | Generates a service worker config for production builds. | boolean | false |
--show-circular-dependencies | Show circular dependency warnings on builds. | boolean | true |
--source-map | Output source maps for scripts and styles. For more information, see https://angular.io/guide/workspace-config#source-map-configuration. | boolean | true |
--stats-json | Generates a 'stats.json' file which can be analyzed using tools such as 'webpack-bundle-analyzer'. | boolean | false |
--subresource-integrity | Enables the use of subresource integrity validation. | boolean | false |
--ts-config | The full path for the TypeScript configuration file, relative to the current workspace. | string | |
--vendor-chunk | Generate a seperate bundle containing only vendor libraries. This option should only used for development. | boolean | true |
--verbose | Adds more details to output logging. | boolean | false |
--watch | Run build when files change. | boolean | false |
--web-worker-ts-config | TypeScript configuration for Web Worker modules. | string |
© 2010–2021 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v11.angular.io/cli/build