Skip to content

Instantly share code, notes, and snippets.

@vol4ok
Last active August 29, 2015 14:01
Show Gist options
  • Save vol4ok/fc094e5f95ea5c89c5bb to your computer and use it in GitHub Desktop.
Save vol4ok/fc094e5f95ea5c89c5bb to your computer and use it in GitHub Desktop.
route all to angular grunt config
var modRewrite = require('connect-modrewrite');
//...
// initConfig -> Connect section
livereload: {
options: {
open: true,
base: [
'.tmp',
'<%= yeoman.app %>'
],
middleware: function(connect, options, middlewares) {
var modrw = modRewrite(['!\\.html|\\.js|\\.svg|\\.css|\\.png|\\.jpg|\\.jpeg|\\.gif|\\.ttf|\\.woff|\\.eot$ /index.html [L]']);
middlewares.unshift(modrw);
return middlewares;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment