I have an index.html
file that is published via the Firebase hosting. I have setup a DEV
(elopement) and PROD
(uction) app in Firebase console. And successfully linked my own domains to it (https://firebase.google.com/docs/hosting/custom-domain)
This page includes opengraph meta data, and as part the og:url
which should point either to the mydomain.dev.com
(when published to DEV
) or mydomain.prod.com
(when published to PROD
). I do not want to start duplicating the index.html
file (code maintentabiliy) so how can I dynamically insert the correct domain via Firebase Hosting?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta property="og:url" content="mydomain.dev.com or mydomain.prod.com">
<meta property="og:type" content="website" />
<meta property="og:title" content="Some title" />
<meta property="og:description" content="some description" />
<meta property="og:image" content="/assets/img/og.jpg" />
...