/app/**) and optionally redirect other paths to Webflow.www.yourdomain.com) and serve your Vue app on the root or subpath (yourdomain.com/app) for simplicity and SEO consistency.www.domain.com to Webflow’s IPs and domain.com to Firebase or redirect it; use canonical tags to unify SEO across domain variants.Yes, it's possible to use a Vue.js app on Firebase Hosting alongside a Webflow-managed homepage, blog, and marketing pages under the same domain. This setup allows you to maximize SEO benefits while keeping content and app infrastructure separated.
Here's how you can architect this:
firebase.json configuration file./app/**) to your Vue.js app.
You have two main options for integrating Webflow with Firebase Hosting:
www.yourdomain.com to Webflow via its A records (75.2.70.75, 99.83.190.102) and CNAME for proxy-ssl.webflow.com.yourdomain.com/app via Firebase Hosting root (yourdomain.com), while Webflow controls www.yourdomain.com.
yourdomain.com./blog, /pricing, or / (homepage) directly to your Webflow-hosted URLs.firebase.json to rewrite those paths to Webflow’s external URLs, maintaining the same domain in appearance for SEO.
Example rule in firebase.json:
{ "source": "/blog/**", "destination": "https://webflow-site.webflow.io/blog" }
⚠️ Note: Proxying external URLs via Firebase Hosting isn't supported natively unless you use a Cloud Function or a proxy server, which adds complexity. In that case, Option A is preferred for simplicity and reliability.
www.yourdomain.com and include canonical tags pointing to yourdomain.com, or vice versa.yourdomain.com to www.yourdomain.com (or the opposite) to unify your domain and avoid SEO penalties for duplicate content.
www.domain.com to Webflow’s IPs: (a) 75.2.70.75, (b) 99.83.190.102
domain.com to Firebase Hosting’s IPs, or redirect it to www.domain.com depending on the main hosting point.
You can host your Vue.js app on Firebase Hosting and your marketing site, homepage, and blog on Webflow, all under the same domain by using subdomains (recommended) or advanced routing/proxying with Firebase. For SEO, ensure consistent URLs with canonical tags and redirects to unify domain variants.