I want to create a theming engine which would require me to override the system's state.provider pointing to it's view/index.html file. Is there a way I can reroute the home page without modifying the system's package?
When using the mean.io stack, do you just start modifying/adding to the /packages/system directory or create your own package, if so, how do you route to your package (making '/' go to your package) without rewritting the system package?
$urlRouterProvider.otherwise('/');
// states for my app
$stateProvider
.state('home', {
url: '/',
templateUrl: 'system/views/index.html'
});
}