(function () { 'use strict'; angular .module('codeAPLEBOX.client.user.home') .config(homeConfig); /* @ngInject */ function homeConfig($stateProvider) { $stateProvider // 로그인 안된 상태 .state('main.home', { url: '/', views: { 'content': { templateUrl: 'app/layout/user/home/home.tmpl.html', controller: 'homeController', controllerAs: 'vm' } } }); } })();