It is possible to include assets in ember CLI, and you can simply wrap them in an if-statement to include them depending on the environment. However, it is only possible to load these assets from bower_components/ or vendor/, as far as I know.
Is there a way to include assets like images depending on the environment?
As an example: I have an image assets/img/logo.png, and depending on the environment in the build process I want this image to be either logo_1.png or logo_2.png.
We have an ember app which is deployed on different servers with slightly different settings (like the API base URL), and different branding, and I have found no way to achieve this so far.