{"id":999,"date":"2025-11-07T18:14:32","date_gmt":"2025-11-07T10:14:32","guid":{"rendered":"https:\/\/witlab.ph\/blog\/?p=999"},"modified":"2025-11-07T18:14:32","modified_gmt":"2025-11-07T10:14:32","slug":"how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide","status":"publish","type":"post","link":"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/","title":{"rendered":"How to Deploy Your Website on Firebase Hosting (Step-by-Step Guide)"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Introduction<\/h3>\n\n\n\n<p>Want to launch your website in <strong>under 10 minutes<\/strong>, with <strong>zero server management<\/strong>, <strong>free HTTPS<\/strong>, and <strong>global speed<\/strong>?<\/p>\n\n\n\n<p><strong>Firebase Hosting<\/strong> is the answer.<\/p>\n\n\n\n<p>Whether you&#8217;re building a personal portfolio, a React\/Vue SPA, or a simple HTML landing page \u2014 Firebase Hosting lets you deploy static websites with a single command. No backend. No DevOps. Just pure front-end magic.<\/p>\n\n\n\n<p>In this guide, I\u2019ll walk you through <strong>deploying your website on Firebase Hosting<\/strong> \u2014 from setup to live URL \u2014 with real commands and screenshots.<\/p>\n\n\n\n<p>Let\u2019s get your site online. \ud83d\ude80<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why Choose Firebase Hosting?<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>Feature<\/td><td>Firebase Hosting<\/td><\/tr><tr><td>Setup Time<\/td><td>~5 minutes<\/td><\/tr><tr><td>Cost<\/td><td>Free tier (1GB storage, 10GB\/month transfer)<\/td><\/tr><tr><td>SSL<\/td><td>Automatic &amp; free<\/td><\/tr><tr><td>Global CDN<\/td><td>200+ edge locations<\/td><\/tr><tr><td>Custom Domain<\/td><td>Yes<\/td><\/tr><tr><td>Rollback<\/td><td>One click<\/td><\/tr><tr><td>CI\/CD<\/td><td>Easy GitHub integration<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Perfect for static sites, SPAs, PWAs, and JAMstack apps.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Prerequisites<\/h3>\n\n\n\n<p>Before we start, make sure you have:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A Google account<\/li>\n\n\n\n<li>Node.js installed<\/li>\n\n\n\n<li>A static website ready (e.g., HTML\/CSS\/JS or a built React app in \/dist)<\/li>\n\n\n\n<li>Terminal (Mac\/Linux) or Command Prompt\/PowerShell (Windows)<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install Firebase CLI<\/h3>\n\n\n\n<p>Open your terminal and run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>npm install -g firebase-tools<\/code><\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>This installs the Firebase command-line tool globally.<\/p>\n<\/blockquote>\n\n\n\n<p>Verify installation:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>firebase --version<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Log In to Firebase<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>firebase login<\/code><\/pre>\n\n\n\n<p>This opens your browser. Sign in with your Google account and allow access.<\/p>\n\n\n\n<p>You\u2019ll see: &#8220;Success! Logged in as your-email@gmail.com&#8221;<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Initialize Your Project<\/h3>\n\n\n\n<p>Navigate to your website\u2019s root folder (where index.html or dist\/ lives):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd path\/to\/your-website<\/code><\/pre>\n\n\n\n<p>Run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>firebase init<\/code><\/pre>\n\n\n\n<p>Follow the prompts:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>? Which Firebase CLI features do you want to set up? \u2192 Hosting\n? Select a default Firebase project \u2192 &#91;Create a new project or select existing]\n? What do you want to use as your public directory? \u2192 dist (or build, public, etc.)\n? Configure as a single-page app (rewrite all urls to \/index.html)? \u2192 Yes\n? Set up automatic builds and deploys with GitHub? \u2192 No (or Yes for CI\/CD)<\/code><\/pre>\n\n\n\n<p>This creates a firebase.json file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"hosting\": {\n    \"public\": \"dist\",\n    \"ignore\": &#91;\"firebase.json\", \"**\/.*\", \"**\/node_modules\/**\"],\n    \"rewrites\": &#91;{\n      \"source\": \"**\",\n      \"destination\": \"\/index.html\"\n    }]\n  }\n}<\/code><\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>SPA Rewrites<\/strong> ensure \/about, \/contact don\u2019t 404 \u2014 they load index.html and let your app handle routing.<\/p>\n<\/blockquote>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Deploy Your Site<\/h3>\n\n\n\n<p>Run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>firebase deploy --only hosting<\/code><\/pre>\n\n\n\n<p>Output:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Hosting: Deploy complete!\n\nHosting URL: https:\/\/your-project-id.web.app<\/code><\/pre>\n\n\n\n<p><strong>Your site is now LIVE globally!<\/strong><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Resources<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/firebase.google.com\/docs\/hosting\">Firebase Hosting Docs<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/firebase.google.com\/docs\/cli\">Firebase CLI Reference<\/a><\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>Firebase Hosting makes web deployment <strong>simple, fast, and free<\/strong>.<\/p>\n\n\n\n<p>No servers. No config. Just:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>firebase deploy<\/code><\/pre>\n\n\n\n<p>And your site is live at https:\/\/your-site.web.app<\/p>\n\n\n\n<p><strong>Try it now<\/strong> \u2014 your first deployment takes less than 10 minutes.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Pro Tip: Use firebase serve to test locally before deploying.<\/p>\n<\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Want to launch your website in under 10 minutes, with zero server management, free HTTPS, and global speed? Firebase Hosting is the answer. Whether you&#8217;re building a personal portfolio, a React\/Vue SPA, or a simple HTML landing page \u2014 Firebase Hosting lets you deploy static websites with a single command. No backend. No DevOps. [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":1014,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[7,8],"class_list":["post-999","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-system","tag-firebase","tag-hosting"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Deploy Your Website on Firebase Hosting (Step-by-Step Guide) - WIT LAB %<\/title>\n<meta name=\"description\" content=\"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Deploy Your Website on Firebase Hosting (Step-by-Step Guide) - WIT LAB %\" \/>\n<meta property=\"og:description\" content=\"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"WIT LAB\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-07T10:14:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/11\/cover_how_to_deploy_your_website_on-_firebase_hosting.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"700\" \/>\n\t<meta property=\"og:image:height\" content=\"366\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Thuta Yar Moe\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Thuta Yar Moe\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/\"},\"author\":{\"name\":\"Thuta Yar Moe\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/person\/9a653900ccc3f52126d3e372603f3617\"},\"headline\":\"How to Deploy Your Website on Firebase Hosting (Step-by-Step Guide)\",\"datePublished\":\"2025-11-07T10:14:32+00:00\",\"dateModified\":\"2025-11-07T10:14:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/\"},\"wordCount\":336,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/11\/cover_how_to_deploy_your_website_on-_firebase_hosting.jpeg\",\"keywords\":[\"Firebase\",\"Hosting\"],\"articleSection\":[\"System\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/\",\"url\":\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/\",\"name\":\"How to Deploy Your Website on Firebase Hosting (Step-by-Step Guide) - WIT LAB %\",\"isPartOf\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/11\/cover_how_to_deploy_your_website_on-_firebase_hosting.jpeg\",\"datePublished\":\"2025-11-07T10:14:32+00:00\",\"dateModified\":\"2025-11-07T10:14:32+00:00\",\"description\":\"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.\",\"breadcrumb\":{\"@id\":\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#primaryimage\",\"url\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/11\/cover_how_to_deploy_your_website_on-_firebase_hosting.jpeg\",\"contentUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/11\/cover_how_to_deploy_your_website_on-_firebase_hosting.jpeg\",\"width\":700,\"height\":366},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/witlab.ph\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Deploy Your Website on Firebase Hosting (Step-by-Step Guide)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/witlab.ph\/blog\/#website\",\"url\":\"https:\/\/witlab.ph\/blog\/\",\"name\":\"WIT LAB\",\"description\":\"Web Development\",\"publisher\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#organization\"},\"alternateName\":\"WIT LAB INC\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/witlab.ph\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/witlab.ph\/blog\/#organization\",\"name\":\"WIT LAB INC\",\"alternateName\":\"Spiceworks (Japan)\",\"url\":\"https:\/\/witlab.ph\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png\",\"contentUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png\",\"width\":681,\"height\":616,\"caption\":\"WIT LAB INC\"},\"image\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/person\/9a653900ccc3f52126d3e372603f3617\",\"name\":\"Thuta Yar Moe\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b2af6b0444bf2ed0e9bc446ac7ee374a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b2af6b0444bf2ed0e9bc446ac7ee374a?s=96&d=mm&r=g\",\"caption\":\"Thuta Yar Moe\"},\"url\":\"https:\/\/witlab.ph\/blog\/author\/thuta\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Deploy Your Website on Firebase Hosting (Step-by-Step Guide) - WIT LAB %","description":"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/","og_locale":"en_US","og_type":"article","og_title":"How to Deploy Your Website on Firebase Hosting (Step-by-Step Guide) - WIT LAB %","og_description":"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.","og_url":"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/","og_site_name":"WIT LAB","article_publisher":"https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/","article_published_time":"2025-11-07T10:14:32+00:00","og_image":[{"width":700,"height":366,"url":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/11\/cover_how_to_deploy_your_website_on-_firebase_hosting.jpeg","type":"image\/jpeg"}],"author":"Thuta Yar Moe","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Thuta Yar Moe","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#article","isPartOf":{"@id":"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/"},"author":{"name":"Thuta Yar Moe","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/person\/9a653900ccc3f52126d3e372603f3617"},"headline":"How to Deploy Your Website on Firebase Hosting (Step-by-Step Guide)","datePublished":"2025-11-07T10:14:32+00:00","dateModified":"2025-11-07T10:14:32+00:00","mainEntityOfPage":{"@id":"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/"},"wordCount":336,"commentCount":0,"publisher":{"@id":"https:\/\/witlab.ph\/blog\/#organization"},"image":{"@id":"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/11\/cover_how_to_deploy_your_website_on-_firebase_hosting.jpeg","keywords":["Firebase","Hosting"],"articleSection":["System"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/","url":"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/","name":"How to Deploy Your Website on Firebase Hosting (Step-by-Step Guide) - WIT LAB %","isPartOf":{"@id":"https:\/\/witlab.ph\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#primaryimage"},"image":{"@id":"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/11\/cover_how_to_deploy_your_website_on-_firebase_hosting.jpeg","datePublished":"2025-11-07T10:14:32+00:00","dateModified":"2025-11-07T10:14:32+00:00","description":"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.","breadcrumb":{"@id":"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#primaryimage","url":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/11\/cover_how_to_deploy_your_website_on-_firebase_hosting.jpeg","contentUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/11\/cover_how_to_deploy_your_website_on-_firebase_hosting.jpeg","width":700,"height":366},{"@type":"BreadcrumbList","@id":"https:\/\/witlab.ph\/blog\/how-to-deploy-your-website-on-firebase-hosting-step-by-step-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/witlab.ph\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Deploy Your Website on Firebase Hosting (Step-by-Step Guide)"}]},{"@type":"WebSite","@id":"https:\/\/witlab.ph\/blog\/#website","url":"https:\/\/witlab.ph\/blog\/","name":"WIT LAB","description":"Web Development","publisher":{"@id":"https:\/\/witlab.ph\/blog\/#organization"},"alternateName":"WIT LAB INC","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/witlab.ph\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/witlab.ph\/blog\/#organization","name":"WIT LAB INC","alternateName":"Spiceworks (Japan)","url":"https:\/\/witlab.ph\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png","contentUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png","width":681,"height":616,"caption":"WIT LAB INC"},"image":{"@id":"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/"]},{"@type":"Person","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/person\/9a653900ccc3f52126d3e372603f3617","name":"Thuta Yar Moe","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b2af6b0444bf2ed0e9bc446ac7ee374a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b2af6b0444bf2ed0e9bc446ac7ee374a?s=96&d=mm&r=g","caption":"Thuta Yar Moe"},"url":"https:\/\/witlab.ph\/blog\/author\/thuta\/"}]}},"_links":{"self":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/999"}],"collection":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/comments?post=999"}],"version-history":[{"count":15,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/999\/revisions"}],"predecessor-version":[{"id":1016,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/999\/revisions\/1016"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/media\/1014"}],"wp:attachment":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/media?parent=999"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/categories?post=999"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/tags?post=999"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}