{"id":9917,"date":"2024-01-16T09:35:27","date_gmt":"2024-01-16T09:35:27","guid":{"rendered":"https:\/\/cloudkul.com\/blog\/?p=9917"},"modified":"2024-04-15T08:05:48","modified_gmt":"2024-04-15T08:05:48","slug":"speed-up-magento-2-using-preload-prefetch-and-preconnect","status":"publish","type":"post","link":"https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/","title":{"rendered":"Speed up Magento 2 using Preload, Prefetch, and Preconnect"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"400\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/04\/speed-up-magento-2-using-preload-prefetch-and-preconnect.png\" alt=\"\" class=\"wp-image-17686\" style=\"width:840px;height:auto\"\/><\/figure>\n\n\n\n<p>In our previous <strong><a href=\"https:\/\/cloudkul.com\/blog\/author\/tanyagarg-bd037\/\">blogs<\/a><\/strong>, we have learned how we can improve our Magento 2 store performance and speed up the page performance using <strong><a href=\"https:\/\/cloudkul.com\/blog\/what-is-signed-exchange-and-its-effect-on-magento-2-ecommerce\/\">Signed Exchange<\/a><\/strong> and by <strong><a href=\"https:\/\/cloudkul.com\/blog\/magento-2-ttfb-how-to-improve-first-byte\/\">improving TTFB<\/a><\/strong>.<\/p>\n\n\n\n<p>Now, in this blog, we are going to discuss how we can improve web page performance using Preload, Prefetch, and Preconnect. Let&#8217;s discuss each of them one by one.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Preload<\/h2>\n\n\n\n<p>Preload enables the browser to quickly download and cache a resource. It&#8217;s useful when you need a resource within a few seconds of the page loading and want to save time.<\/p>\n\n\n\n<p>Add a &lt;link&gt; tag with rel=&#8221;preload&#8221; to the head of your HTML document to preload resources:<\/p>\n\n\n\n<p>&lt;<span class=\"has-inline-color has-vivid-green-cyan-color\">link<\/span> <span class=\"has-inline-color has-vivid-red-color\">rel<\/span>=<span class=\"has-inline-color has-vivid-cyan-blue-color\">&#8220;preload&#8221;<\/span> <span class=\"has-inline-color has-vivid-red-color\">href<\/span>=<span class=\"has-inline-color has-vivid-cyan-blue-color\">&#8220;critical.js&#8221;<\/span> <span class=\"has-inline-color has-vivid-red-color\">as<\/span>=<span class=\"has-inline-color has-vivid-cyan-blue-color\">&#8220;script&#8221;<\/span>&gt;<\/p>\n\n\n\n<p>You can preload several things like &#8211; fonts, styles, scripts, images, etc.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"507\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2021\/08\/preload-1024x507.png\" alt=\"\" class=\"wp-image-9997\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Uses of Preload in Magento 2<\/h3>\n\n\n\n<ul>\n<li>It&#8217;ll prove useful if you know you&#8217;ll require a resource soon after loading the page and want to begin loading it faster.<\/li>\n\n\n\n<li>This enables the preloading of resources launched by CSS and JavaScript, as well as defining when each resource should be applied.<\/li>\n\n\n\n<li>By referencing what is defined in the &#8216;as&#8217; attribute, the browser can verify if the request is consistent with the content security policy.<\/li>\n<\/ul>\n\n\n\n<p>Preloading everything will not automatically speed up the site; rather, it will prevent the browser from scheduling things effectively. Therefore, it should be used judiciously to optimize page performance.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prefetch<\/h2>\n\n\n\n<p>It instructs the browser to download and cache a resource when it is inactive. It works great when you know you&#8217;ll require a resource on a later page and want to cache it ahead of time.<\/p>\n\n\n\n<p>Add a &lt;link&gt; tag with rel=&#8221;prefetch&#8221; to the head of your HTML document to prefetch resources:<\/p>\n\n\n\n<p>&lt;<span class=\"has-inline-color has-vivid-green-cyan-color\">link<\/span> <span class=\"has-inline-color has-vivid-red-color\">rel<\/span>=<span class=\"has-inline-color has-vivid-cyan-blue-color\">&#8220;prefetch&#8221;<\/span> <span class=\"has-inline-color has-vivid-red-color\">href<\/span>=<span class=\"has-inline-color has-vivid-cyan-blue-color\">&#8220;\/style.css&#8221;<\/span> <span class=\"has-inline-color has-vivid-red-color\">as<\/span>=<span class=\"has-inline-color has-vivid-cyan-blue-color\">&#8220;style&#8221; \/<\/span>&gt;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Types of prefetching <\/h3>\n\n\n\n<p>1. <strong>Link Prefetching &#8211; <\/strong>Link prefetching allows the browser to fetch resources and cache them in anticipation of a user request. <\/p>\n\n\n\n<p>&lt;<span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-green-cyan-color\">link<\/span> <code><span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\">rel<\/span>=<span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">\"prefetch\"<\/span> <span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\">href<\/span>=<span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">\"\/images\/pic.png\"<\/span><\/code>><\/p>\n\n\n\n<p>2. <strong>DNS Prefetching &#8211;<\/strong> While the user is browsing, DNS Prefetching allows the browser to do DNS lookups on a page in the background.<\/p>\n\n\n\n<p> &lt;<span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-green-cyan-color\">link<\/span> <code><span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\">rel<\/span>=<span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">\"dns-prefetch\"<\/span> <span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\">href<\/span>=<span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">\"\/\/domain.com\"<\/span><\/code>><\/p>\n\n\n\n<p>3. <strong>Prerendering &#8211; <\/strong>Prerendering is similar to prefetching, it renders the entire page, including all of the document&#8217;s assets, in the background.<\/p>\n\n\n\n<p>&lt;<span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-green-cyan-color\">link<\/span> <span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\">rel<\/span>=<span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">&#8220;prerendering&#8221;<\/span> <span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\">href<\/span>=<span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">&#8220;www.cloudflare.com<\/span>&#8220;><\/p>\n\n\n\n<p>These techniques optimize page loading and user experience by proactively fetching and preparing resources.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"526\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2021\/08\/prefetch-1024x526.png\" alt=\"\" class=\"wp-image-9999\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Uses of Prefetching<\/h3>\n\n\n\n<ul>\n<li>It&#8217;ll come in handy if you need a resource on a different page and want to preload it to speed up the page&#8217;s rendering.<\/li>\n\n\n\n<li>Prefetches are normally given the lowest priority by browsers to avoid interfering with other resources. This implies that prefetching a large amount of data is probably safe.<\/li>\n<\/ul>\n\n\n\n<p>Prefetched resources are loaded with significantly lower priority compared to preloaded resources, ensuring that the user&#8217;s current page experience remains unaffected.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Preconnect<\/h2>\n\n\n\n<p>It&#8217;s useful if you know you&#8217;ll be downloading something from that domain shortly but aren&#8217;t sure what it will be and want to speed up the connection.<\/p>\n\n\n\n<p>When a browser requests something from a new third-party domain, such as a font from Google Fonts, React from a CDN, or a JSON response from an API server, the browser must establish a connection.<\/p>\n\n\n\n<p>Add a &lt;link&gt; tag with rel=&#8221;preconnect&#8221; to the head of your HTML document to prefetch resources:<\/p>\n\n\n\n<p>&lt;<span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-green-cyan-color\">link<\/span> <span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\">rel<\/span>=<span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">&#8220;preconnect&#8221;<\/span> <span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\">href<\/span>=<span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">&#8220;https:\/\/webkul.com\/<\/span>&gt;<\/p>\n\n\n\n<p>This approach enhances the efficiency of establishing connections with external domains, improving page loading speed.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"502\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2021\/08\/preconnect-1024x502.png\" alt=\"\" class=\"wp-image-10000\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Uses of Preconnect<\/h3>\n\n\n\n<ul>\n<li>It&#8217;ll come in handy if you need a specific style, script, or image from a third-party domain but don&#8217;t know the resource URL.<\/li>\n\n\n\n<li>The preconnect directive instructs the browser to establish early connections before sending an HTTP request to the server.<\/li>\n\n\n\n<li>Preconnecting your website in a well-thought-out and efficient manner can not only help you optimize it, but it will also save you from under-utilizing resources.<\/li>\n<\/ul>\n\n\n\n<p>It&#8217;s important that setting up and maintaining connections can be resource-intensive, so it&#8217;s advisable to limit the use of the preconnect tag to approximately 4-6 domains as a general guideline.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Hopefully, you now have a better understanding of what preload, prefetch, and preconnect are and how you may use them strategically to speed up the delivery of content and assets.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Need Support?<\/h2>\n\n\n\n<p>Thank You for reading this Blog!<\/p>\n\n\n\n<p>For further more interesting blogs, keep in touch with us. If you need any kind of support, simply raise a ticket at&nbsp;<strong><em><a rel=\"noreferrer noopener\" href=\"https:\/\/webkul.uvdesk.com\/en\/\" target=\"_blank\">https:\/\/webkul.uvdesk.com\/en\/<\/a>.<\/em><\/strong> <\/p>\n\n\n\n<p>You may also visit our Magento development services and quality&nbsp; <strong><a href=\"https:\/\/store.webkul.com\/Magento-2.html\">Magento 2 Extensions<\/a><\/strong>.<\/p>\n\n\n\n<p><strong>For further help or queries, please&nbsp;<a href=\"https:\/\/cloudkul.com\/contact\/\">contact<\/a>&nbsp;us or raise a&nbsp;<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\">ticket<\/a>.<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In our previous blogs, we have learned how we can improve our Magento 2 store <a class=\"text-primary\" title=\"read more\" href=\"https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":29,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_mi_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[2,87,20,341,340],"tags":[84,360,90,24,608,607,606,34],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Speed up Magento 2 using Preload, Prefetch, and Preconnect - Cloudkul<\/title>\n<meta name=\"description\" content=\"Preload in Magento 2 enables the browser to quickly download and cache a resource. It&#039;s useful when you need a resource within a few seconds of the page loading.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Speed up Magento 2 using Preload, Prefetch, and Preconnect - Cloudkul\" \/>\n<meta property=\"og:description\" content=\"Preload in Magento 2 enables the browser to quickly download and cache a resource. It&#039;s useful when you need a resource within a few seconds of the page loading.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloudkul\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-16T09:35:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-15T08:05:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/04\/speed-up-magento-2-using-preload-prefetch-and-preconnect.png\" \/>\n<meta name=\"author\" content=\"Tanya Garg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/CloudWebkul\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/\",\"url\":\"https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/\",\"name\":\"Speed up Magento 2 using Preload, Prefetch, and Preconnect - Cloudkul\",\"isPartOf\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/#website\"},\"datePublished\":\"2024-01-16T09:35:27+00:00\",\"dateModified\":\"2024-04-15T08:05:48+00:00\",\"author\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/65b93d1aa584abd012eb60a25839b984\"},\"description\":\"Preload in Magento 2 enables the browser to quickly download and cache a resource. It's useful when you need a resource within a few seconds of the page loading.\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Speed up Magento 2 using Preload, Prefetch, and Preconnect\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#website\",\"url\":\"https:\/\/cloudkul.com\/blog\/\",\"name\":\"Cloudkul\",\"description\":\"Host your eCommerce Store on AWS with Optimized Performance\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudkul.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/65b93d1aa584abd012eb60a25839b984\",\"name\":\"Tanya Garg\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9ea334eba6adf9dfe79873bc0bee8dad?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9ea334eba6adf9dfe79873bc0bee8dad?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g\",\"caption\":\"Tanya Garg\"},\"description\":\"Business Developer Executive at Webkul\",\"sameAs\":[\"https:\/\/cloudkul.com\/\",\"https:\/\/twitter.com\/https:\/\/twitter.com\/CloudWebkul\"],\"url\":\"https:\/\/cloudkul.com\/blog\/author\/tanyagarg-bd037\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Speed up Magento 2 using Preload, Prefetch, and Preconnect - Cloudkul","description":"Preload in Magento 2 enables the browser to quickly download and cache a resource. It's useful when you need a resource within a few seconds of the page loading.","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:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/","og_locale":"en_US","og_type":"article","og_title":"Speed up Magento 2 using Preload, Prefetch, and Preconnect - Cloudkul","og_description":"Preload in Magento 2 enables the browser to quickly download and cache a resource. It's useful when you need a resource within a few seconds of the page loading.","og_url":"https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/","og_site_name":"Cloudkul","article_published_time":"2024-01-16T09:35:27+00:00","article_modified_time":"2024-04-15T08:05:48+00:00","og_image":[{"url":"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2024\/04\/speed-up-magento-2-using-preload-prefetch-and-preconnect.png"}],"author":"Tanya Garg","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/CloudWebkul","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/","url":"https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/","name":"Speed up Magento 2 using Preload, Prefetch, and Preconnect - Cloudkul","isPartOf":{"@id":"https:\/\/cloudkul.com\/blog\/#website"},"datePublished":"2024-01-16T09:35:27+00:00","dateModified":"2024-04-15T08:05:48+00:00","author":{"@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/65b93d1aa584abd012eb60a25839b984"},"description":"Preload in Magento 2 enables the browser to quickly download and cache a resource. It's useful when you need a resource within a few seconds of the page loading.","breadcrumb":{"@id":"https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/cloudkul.com\/blog\/speed-up-magento-2-using-preload-prefetch-and-preconnect\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Speed up Magento 2 using Preload, Prefetch, and Preconnect"}]},{"@type":"WebSite","@id":"https:\/\/cloudkul.com\/blog\/#website","url":"https:\/\/cloudkul.com\/blog\/","name":"Cloudkul","description":"Host your eCommerce Store on AWS with Optimized Performance","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudkul.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/65b93d1aa584abd012eb60a25839b984","name":"Tanya Garg","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9ea334eba6adf9dfe79873bc0bee8dad?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9ea334eba6adf9dfe79873bc0bee8dad?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g","caption":"Tanya Garg"},"description":"Business Developer Executive at Webkul","sameAs":["https:\/\/cloudkul.com\/","https:\/\/twitter.com\/https:\/\/twitter.com\/CloudWebkul"],"url":"https:\/\/cloudkul.com\/blog\/author\/tanyagarg-bd037\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/9917"}],"collection":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/users\/29"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/comments?post=9917"}],"version-history":[{"count":22,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/9917\/revisions"}],"predecessor-version":[{"id":17687,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/9917\/revisions\/17687"}],"wp:attachment":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/media?parent=9917"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/categories?post=9917"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/tags?post=9917"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}