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
31 config.$inject = ['$urlRouterProvider', '$locationProvider'];
33 console.log ("***location=" + window.location + " search" + window.search);
35 function config($urlProvider, $locationProvider, ConfigApp) {
36 $urlProvider.otherwise('/home');
38 // https://docs.angularjs.org/error/$location/nobase
39 $locationProvider.html5Mode(true).hashPrefix('!');
44 FastClick.attach(document.body);
47 console.log ("opa=@@APPNAME@@ Loaded");