I have a polymer node site that I\'ve been working on and can\'t figure out how to include dynamic meta tags and Open Graph tags. Jquery won\'t work and neither will using t
If you host your Polymer app with Firebase, you can prerender the index.html file with a Firebase http trigger function.
exports.host = functions.https.onRequest((req, res) => { // replace og-tags in the index.html file and return it });
See this post for more info.