# Persistent disk cache Angular CLI saves a number of cachable operations on disk by default. When you re-run the same build, the build system restores the state of the previous build and re-uses previously performed operations, which decreases the time taken to build and test your applications and libraries. To amend the default cache settings, add the `cli.cache` object to your [Workspace Configuration](guide/workspace-config). The object goes under `cli.cache` at the top level of the file, outside the `projects` sections. ```json { "$schema": "./node_modules/@angular/cli/lib/config/schema.json", "version": 1, "cli": { "cache": { ... } }, "projects": {} } ``` For more information, see [cache options](guide/workspace-config#cache-options). ### Enabling and disabling the cache Caching is enabled by default. To disable caching run the following command: ```bash ng config cli.cache.enabled false ``` To re-enable caching, set `cli.cache.enabled` to `true`. ### Cache environments By default, disk cache is only enabled for local environments. To enable caching for all environments, run the following command: ```bash ng config cli.cache.environment all ``` For more information, see `environment` in [cache options](guide/workspace-config#cache-options).