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