Skip to content

Instantly share code, notes, and snippets.

@dimitrovs
Created August 19, 2016 04:55
Show Gist options
  • Save dimitrovs/67ac2fb74e20583f125440065924a77c to your computer and use it in GitHub Desktop.
Save dimitrovs/67ac2fb74e20583f125440065924a77c to your computer and use it in GitHub Desktop.
Sails.js SPA routes
prefix: '/api',
module.exports = {
index: function(req, res) {
res.sendfile(__dirname, 'index.html');
}
};
'get /': {
controller: 'index',
action: 'index'
},
'*': {
target: '/',
skipAssets: true,
skipRegex: /^\/api\/.*$/
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment