generator-ngstack
Version:
Based on DaftMonk generator-angular-fullstack, this is a custom mean stack yeoman generator
27 lines (20 loc) • 654 B
JavaScript
/**
* Main application routes
*/
;
var errors = require('./components/errors');
module.exports = function(app) {
// Insert routes below
app.use('/api/things', require('./api/thing'));
<% if (filters.auth) { %>app.use('/api/users', require('./api/user'));
app.use('/auth', require('./auth'));
<% } %>
// All undefined asset or api routes should return a 404
app.route('/:url(api|auth|components|app|bower_components|assets)/*')
.get(errors[404]);
// All other routes should redirect to the index.html
app.route('/*')
.get(function(req, res) {
res.sendfile(app.get('appPath') + '/index.html');
});
};