31 lines
412 B
JavaScript
31 lines
412 B
JavaScript
module.exports = function(mw) {
|
|
return {
|
|
public: [
|
|
{
|
|
title: 'Start',
|
|
template: 'pages/index',
|
|
path: '/'
|
|
}, {
|
|
title: 'Spytext'
|
|
}, {
|
|
title: 'Playground'
|
|
}, {
|
|
title: 'CSS',
|
|
name: 'css'
|
|
}
|
|
],
|
|
|
|
//redirects: [
|
|
// [ '/coupon','/kupongen' ],
|
|
//],
|
|
|
|
//admin: [
|
|
// {
|
|
// title: 'Dashboard',
|
|
// path: '/',
|
|
// template: 'admin/pages/index'
|
|
// }
|
|
//]
|
|
};
|
|
};
|