UNPKG
generator-neonode
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Yeoman generator to scaffold a Neonode Fullstack MVC Application
Empathia/neonode
generator-neonode
/
generators
/
app
/
templates
/
skeleton
/
config
/
RouteMappings.js
9 lines
(5 loc)
•
191 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
RouteMappings = require(
'route-mappings'
);
var
routeMappings = RouteMappings() .
get
(
'/'
,
'Home#index'
) .
get
(
'/no-layout'
, { to :
'Home#noLayout'
}) module.exports = routeMappings;