{"id":133449,"date":"2019-03-04T06:09:34","date_gmt":"2019-03-04T06:09:34","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=133449"},"modified":"2026-01-21T11:28:07","modified_gmt":"2026-01-21T11:28:07","slug":"magento2-3-pwa-studio-setup","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/","title":{"rendered":"How to Setup and Install Magento 2 PWA Studio"},"content":{"rendered":"<p>Setting up <strong data-start=\"269\" data-end=\"293\">Magento 2 PWA Studio Setup<\/strong> can look simple in documentation, but in real projects you often face version issues, OpenSSL errors, and environment mismatches.<\/p>\n<p>In this guide, I am sharing a <strong data-start=\"455\" data-end=\"484\">practical, working method<\/strong> to set up Magento 2 PWA Studio using Venia storefront<\/p>\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">What are Progressive Web Apps?<\/h3>\n<\/div>\n<p>The popularity of PWA is growing at very fast in the field of e-commerce, business, online news portal and other fields because of its peculiar characteristics listed below follows:<\/p>\n<h4><strong>1. Faster User Interface Support<br \/><\/strong><\/h4>\n<p>Web developers can now load an entire website to a browser after just one pageview even on slow networks.<\/p>\n<h4><strong>2. Home Screen Shortcut<br \/><\/strong><\/h4>\n<p>Mobile users can install the PWA site on their home screen like a Native App.<\/p>\n<h4><strong>3. Offline Support<\/strong><\/h4>\n<p>Implementation of service workers makes it able to work offline. The website can now be accessible even to users who lost internet connectivity.<\/p>\n<p>PWA sites cache content to ensure that some content can be served when a user is offline.<\/p>\n<h4><strong>4. Background Processes<\/strong><\/h4>\n<p>If the user facing poor connectivity or offline, the browser store all the form submission data and requests, When connectivity returns it re-sent all the data in the background.<\/p>\n<h4><strong>5. Secure<\/strong><\/h4>\n<p>PWA sites use HTTPS connections for enhanced security.<\/p>\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Why Use Magento 2 PWA Studio?<\/h3>\n<\/div>\n<p>Magento PWA Studio helps you build a <strong data-start=\"737\" data-end=\"779\">fast, headless, React-based storefront<\/strong> for Magento.<\/p>\n<p>It improves:<\/p>\n<ul>\n<li>Page speed and performance<\/li>\n<li>Mobile experience<\/li>\n<li>SEO and Core Web Vitals<\/li>\n<li>User experience and scalability<\/li>\n<\/ul>\n<p>Venia is the default reference storefront provided by Adobe.<\/p>\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">System Requirements<\/h3>\n<\/div>\n<p>For this Magento PWA Studio setup, the following versions were used:<\/p>\n<ul>\n<li><strong data-start=\"188\" data-end=\"200\">Node.js:<\/strong> 20.20.0<\/li>\n<li><strong data-start=\"213\" data-end=\"221\">NPM:<\/strong> 10.8.2<\/li>\n<li><strong data-start=\"233\" data-end=\"242\">Yarn:<\/strong> 1.22.22<\/li>\n<\/ul>\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Step 1: Clone the PWA Studio Repository<\/h3>\n<\/div>\n<p>First, clone the official Magento PWA Studio repository from GitHub.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">git clone https:\/\/github.com\/magento\/pwa-studio.git<\/pre>\n<p>This will download the complete PWA Studio workspace into your system.<\/p>\n<p>Now move inside the project directory.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">cd pwa-studio<\/pre>\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Step 2: Install PWA Studio Dependencies<\/h3>\n<\/div>\n<p>Install all required packages using Yarn.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">yarn install<\/pre>\n<p>This step may take a few minutes depending on your internet speed and system performance.<\/p>\n<p>After this, all node modules will be available locally.<\/p>\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Step 3: Generate SSL Certificate for Local Domain<\/h3>\n<\/div>\n<p>Now generate a custom local SSL certificate for Venia.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">yarn buildpack create-custom-origin packages\/venia-concept<\/pre>\n<p>This command creates a <strong data-start=\"2016\" data-end=\"2039\">secure local domain<\/strong> required by PWA Studio.<\/p>\n<h4>Common Error: OpenSSL Digital Envelope Issue<\/h4>\n<p>You may get this error:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">error:0308010C:digital envelope routines::unsupported<\/pre>\n<p>This happens due to <strong data-start=\"2231\" data-end=\"2277\">OpenSSL compatibility issues with Node 20+<\/strong>.<\/p>\n<h4>Solution for OpenSSL Error<\/h4>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">export NODE_OPTIONS=--openssl-legacy-provider<\/pre>\n<p>This will fix the OpenSSL issue permanently for the session.<\/p>\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Step 4: Create the Environment File (.env)<\/h3>\n<p>Now generate the environment configuration file.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">yarn buildpack create-env-file packages\/venia-concept<\/pre>\n<p>This command will create the <code data-start=\"2761\" data-end=\"2767\">.env<\/code> file inside the Venia package.<\/p>\n<\/div>\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Step 5: Configure Magento Backend URL<\/h3>\n<\/div>\n<p>Edit this file:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">pwa-studio\/packages\/venia-concept\/.env<\/pre>\n<p>Now set your Magento backend URL:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">MAGENTO_BACKEND_URL=https:\/\/your-magento-domain.com\/<\/pre>\n<p>Make sure:<\/p>\n<ul>\n<li>The URL is publicly accessible<\/li>\n<li>GraphQL works correctly on this domain<\/li>\n<\/ul>\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Step 6: Start the Venia Development Server<\/h3>\n<\/div>\n<h4>Build artifacts<\/h4>\n<p>Before starting the server, generate the Venia build artifacts by running the following command from the PWA Studio project root directory.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">yarn run build<\/pre>\n<h4 id=\"run-the-server\">Run the server<\/h4>\n<p>Now start the PWA development server.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">yarn watch:venia<\/pre>\n<p>This command will:<\/p>\n<ul>\n<li>Build the PWA storefront<\/li>\n<li>Start the local dev server<\/li>\n<li>Provide a <strong data-start=\"3309\" data-end=\"3333\">dynamic frontend URL<\/strong><\/li>\n<\/ul>\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Access Your Magento PWA Frontend<\/h3>\n<\/div>\n<p>After the build finishes, the terminal will show a URL like:<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-522970\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts.webp\" alt=\"venia-starts\" width=\"1328\" height=\"423\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts.webp 1328w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts-300x96.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts-1200x382.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts-250x80.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts-768x245.webp 768w\" sizes=\"(max-width: 1328px) 100vw, 1328px\" loading=\"lazy\" \/><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">https:\/\/magento-venia-concept-9ijvy.local.pwadev:8470\/<\/pre>\n<p>Open this URL in your browser to see the Venia storefront running.<\/p>\n\n\n<p>Thank you for reading the dev doc article on how Magento 2 PWA Studio setup. If you need any help, please reach out to our team via a <a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\" target=\"_blank\" rel=\"noreferrer noopener\">support ticket<\/a>.<\/p>\n\n\n\n<p>Find the complete range of <a href=\"https:\/\/store.webkul.com\/Magento-2.html\" target=\"_blank\" rel=\"noreferrer noopener\">Magento 2 extensions<\/a> including <a href=\"https:\/\/store.webkul.com\/magento2-progressive-web-app.html\" target=\"_blank\" rel=\"noreferrer noopener\">PWA<\/a> and <a href=\"https:\/\/store.webkul.com\/magento2-headless-pwa.html\" target=\"_blank\" rel=\"noreferrer noopener\">Headless PWA<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Setting up Magento 2 PWA Studio Setup can look simple in documentation, but in real projects you often face version issues, OpenSSL errors, and environment mismatches. In this guide, I am sharing a practical, working method to set up Magento 2 PWA Studio using Venia storefront What are Progressive Web Apps? The popularity of PWA <a href=\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":69,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[7104,7105],"class_list":["post-133449","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-magento2-pwa","tag-pwa-studio-magento2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Setup and Install Magento 2 PWA Studio<\/title>\n<meta name=\"description\" content=\"How to setup PWA Studio Setup and Setup Venia Project on Production Server. Magento PWA Studio is a suite of tools to develop online stores.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Setup and Install Magento 2 PWA Studio\" \/>\n<meta property=\"og:description\" content=\"How to setup PWA Studio Setup and Setup Venia Project on Production Server. Magento PWA Studio is a suite of tools to develop online stores.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-03-04T06:09:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-21T11:28:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts.webp\" \/>\n<meta name=\"author\" content=\"Mahesh Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mahesh Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/\"},\"author\":{\"name\":\"Mahesh Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/53d3b977a0ab5adcf32aef9f97e595bd\"},\"headline\":\"How to Setup and Install Magento 2 PWA Studio\",\"datePublished\":\"2019-03-04T06:09:34+00:00\",\"dateModified\":\"2026-01-21T11:28:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/\"},\"wordCount\":572,\"commentCount\":36,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts.webp\",\"keywords\":[\"Magento2 PWA\",\"PWA studio Magento2\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/\",\"url\":\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/\",\"name\":\"How to Setup and Install Magento 2 PWA Studio\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts.webp\",\"datePublished\":\"2019-03-04T06:09:34+00:00\",\"dateModified\":\"2026-01-21T11:28:07+00:00\",\"description\":\"How to setup PWA Studio Setup and Setup Venia Project on Production Server. Magento PWA Studio is a suite of tools to develop online stores.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts.webp\",\"width\":1328,\"height\":423,\"caption\":\"venia-starts\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Setup and Install Magento 2 PWA Studio\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/53d3b977a0ab5adcf32aef9f97e595bd\",\"name\":\"Mahesh Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f4c013ebf7008223382b8a49203e6d354677e8baff0eca373e6e4266efa762da?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f4c013ebf7008223382b8a49203e6d354677e8baff0eca373e6e4266efa762da?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Mahesh Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/mahesh721\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Setup and Install Magento 2 PWA Studio","description":"How to setup PWA Studio Setup and Setup Venia Project on Production Server. Magento PWA Studio is a suite of tools to develop online stores.","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:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/","og_locale":"en_US","og_type":"article","og_title":"How to Setup and Install Magento 2 PWA Studio","og_description":"How to setup PWA Studio Setup and Setup Venia Project on Production Server. Magento PWA Studio is a suite of tools to develop online stores.","og_url":"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2019-03-04T06:09:34+00:00","article_modified_time":"2026-01-21T11:28:07+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts.webp","type":"","width":"","height":""}],"author":"Mahesh Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Mahesh Singh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/"},"author":{"name":"Mahesh Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/53d3b977a0ab5adcf32aef9f97e595bd"},"headline":"How to Setup and Install Magento 2 PWA Studio","datePublished":"2019-03-04T06:09:34+00:00","dateModified":"2026-01-21T11:28:07+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/"},"wordCount":572,"commentCount":36,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts.webp","keywords":["Magento2 PWA","PWA studio Magento2"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/","url":"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/","name":"How to Setup and Install Magento 2 PWA Studio","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts.webp","datePublished":"2019-03-04T06:09:34+00:00","dateModified":"2026-01-21T11:28:07+00:00","description":"How to setup PWA Studio Setup and Setup Venia Project on Production Server. Magento PWA Studio is a suite of tools to develop online stores.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/03\/venia-starts.webp","width":1328,"height":423,"caption":"venia-starts"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/magento2-3-pwa-studio-setup\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Setup and Install Magento 2 PWA Studio"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/53d3b977a0ab5adcf32aef9f97e595bd","name":"Mahesh Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f4c013ebf7008223382b8a49203e6d354677e8baff0eca373e6e4266efa762da?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f4c013ebf7008223382b8a49203e6d354677e8baff0eca373e6e4266efa762da?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Mahesh Singh"},"url":"https:\/\/webkul.com\/blog\/author\/mahesh721\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/133449","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/69"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=133449"}],"version-history":[{"count":56,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/133449\/revisions"}],"predecessor-version":[{"id":522977,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/133449\/revisions\/522977"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=133449"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=133449"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=133449"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}