4 angular.module('@@APPNAME@@', [ // Warning: Appname should fit with gulpfile.js & index.html
10 'foundation.dynamicRouting',
11 'foundation.dynamicRouting.animations',
13 // external components
16 // Application Components
29 config.$inject = ['$urlRouterProvider', '$locationProvider'];
31 function config($urlProvider, $locationProvider) {
32 $urlProvider.otherwise('/home');
34 // https://docs.angularjs.org/error/$location/nobase
35 $locationProvider.html5Mode(true).hashPrefix('!');
40 FastClick.attach(document.body);
43 console.log ("@@APPNAME@@ Loaded");