I\'ve created an app using AngularJS with GAE (Google App Engine – Java).
I want to convert it compatible with SEO.
Try adding below section in your grunt file liverload middleware section.
livereload: {
options: {
open: true,
middleware: function (connect) {
return [
connect.static('.tmp'),
connect().use(
'/bower_components',
connect.static('./bower_components')
),
connect().use(
'/app/styles',
connect.static('./app/styles')
),
connect().use(
'/apply',
connect.static('./app/index.html')
),
connect.static(appConfig.app)
];
}
}
}
}