A DIY blog platform for wizards and muggles.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
429 B

"use strict";
// Declare app level module which depends on views, and components
angular
.module("myApp", [
"ngRoute",
"myApp.about",
"myApp.authors",
"myApp.site",
"myApp.build",
"myApp.configure",
"myApp.post",
"myApp.version",
"myApp.services",
])
.config([
"$routeProvider",
function ($routeProvider) {
$routeProvider.otherwise({ redirectTo: "/about" });
},
]);