I built a large angularJS site and made it into several languages, partially downloading json files. My site is full of these lines:
{{ 'TITLE' | translate }}
I am not sure how to make them SEO friendly. I found many solutions on the Internet, but also many people who said they were no longer needed because Google and Bing could crawl angular projects.
So, I set my project to html5 = true, but it created an error that <base> missing. So I implemented <base href="/"> , but later my project was deployed to a subfolder / stage / so that all the links broke. (my developer and living environment have different bases)
I am not happy that I rely on a 3rd party like prerender.io
What is the latest way to get your angular projects for SEO. And is there a localhost solution? Can Grunt possibly redo all my pages so that I can implement it in my build script?
source share