I'm developing an AngularJS application inside Visual Studio 2013. I've added a custom HTML template with some debugging form fields to manipulate my scope when developing the site:
<div data-ng-include="'App/Development/development.html'"></div>
This is fixed in the bottom left corner and make it easier for me to quickly do some actions when testing the site.
But this should be removed when I deploy my website (Release configuration).
Does anyone have a good solution for doing this? Currently my App config and AngularJS is not integrated, so there is no way to tell my Angular application that it is running in production mode.