Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 1.04 KB

config-directory.md

File metadata and controls

26 lines (23 loc) · 1.04 KB

config-directory

Config Directory

This directory contains all configuration files and parameters for the application's environments. For example, in the Config directory, you might find the following resources: ConfigService, ConfigModule, development, and production stages, and so on. By default, the app's settings are loaded using the JSON file technique, which allows you to update the app's parameters after it's built without rebuilding the app. For more information, see Angular Config With JSON Files.

.
┣ config
|  ┣ enums
|  |  ┗ environment.enum.ts
|  ┣ environments
|  |  ┣ environment.devt.ts
|  |  ┗ environment.ts
|  ┣ interfaces
|  |  ┣ config.interface.ts
|  |  ┗ environment.interfaces.ts
|  ┣ services
|  |  ┗ config.service.ts
|  ┣ config.module.ts
|  ┣ envconfig.devt.json
|  ┗ envconfig.prod.json