-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Damian Dominella edited this page Apr 18, 2018
·
10 revisions
Your API must have a route defined in your enviroment.ts which returns a JSON with the following structure:
In the folder src/enviroments put the following files into it:
- enviroment.ts
- enviroment.prod.ts (only for production)
- colors.scss
You can also add a logo to your backend, just add an image called logo.png inside src/assets/images (recommended size: 150x40). If you add a logo, you need to add an logo property in your enviroment.ts.assets. Like this:
{
"assets": {
"logo": "/assets/images/logo.png",
"imageError": "/assets/images/image-error.png"
}
}
-
File examples