UNPKG

generator-angular-eggs

Version:

Angular 1.5, Angular Component Router, Bootstrap v4(alpha) and TingoDB(like MongoDB) with an Express server

21 lines (17 loc) 391 B
// jshint devel:true (function () { 'use strict'; angular .module('<%= appname %>.config', []) .config(AppConfig); function AppConfig($locationProvider) { /* # Hashbang Mode http://www.example.com/#/aaa/ # HTML5 Mode http://www.example.com/aaa/ */ $locationProvider.html5Mode(true); } AppConfig.$inject = ['$locationProvider']; })();