UNPKG

@codehance/rapid-stack

Version:

A modern full-stack development toolkit for rapid application development

15 lines (14 loc) 353 B
import { Routes } from '@angular/router'; export const routes: Routes = [ { path: '', redirectTo: '<%= pages[0] %>', pathMatch: 'full' }, <% pages.forEach(function(page) { %> { path: '<%= page %>', loadComponent: () => import('./pages/<%= page %>/<%= page %>.page').then(m => m.<%= _capitalize(page) %>Page) }, <% }); %> ];