{"id":1557,"date":"2023-02-01T14:17:20","date_gmt":"2023-02-01T17:17:20","guid":{"rendered":"https:\/\/www.latirus.com\/blog\/?p=1557"},"modified":"2024-12-08T19:07:12","modified_gmt":"2024-12-08T22:07:12","slug":"solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue","status":"publish","type":"post","link":"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/","title":{"rendered":"Soluci\u00f3n: Vue.js \/ Laravel Component Provided Template\u2026 Configure your bundler to alias &#8220;vue&#8221;."},"content":{"rendered":"\n<p>Muchas veces al compilar <strong>Vue 3<\/strong> en <strong>Laravel <\/strong>nos da la siguiente advertencia en la consola del navegador <strong>[Vue warn]: Component provided template option but runtime compilation is not supported in this build of Vue. Configure your bundler to alias &#8220;vue&#8221; to &#8220;vue\/dist\/vue.esm-bundler.js&#8221;.<\/strong><\/p>\n\n\n\n<p>Para solucionar la advertencia necesitamos configurar el bundler con el alias \u201c<strong>vue<\/strong>\u201d, y para ello tenemos dos opciones:<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Primera Soluci\u00f3n cambiar vue por esm-bundler<\/h2>\n\n\n\n<p>La primera soluci\u00f3n se trata de cambiar el import de la librer\u00eda vue por la del esm-bundler. Para ello, en nuestro archivo js reemplazamos:<\/p>\n\n\n\n<pre title=\"\" class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">import { createApp } from 'vue'<\/code><\/pre>\n\n\n\n<p>Por lo siguiente:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">import { createApp } from 'vue\/dist\/vue.esm-bundler.js'<\/code><\/pre>\n\n\n\n<p>Volvemos a compilar nuestra aplicaci\u00f3n de <strong>Vue 3<\/strong> y listo no deber\u00eda salirnos m\u00e1s la advertencia de \u201c<strong>Component provided template option but runtime compilation is not supported in this build of Vue<\/strong>.\u201d<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Segunda Soluci\u00f3n: Agregar el Alias en la configuraci\u00f3n de nuestro bundler<\/h2>\n\n\n\n<p>En el caso de <strong>Laravel<\/strong> que empez\u00f3 a utilizar <strong>Vitejs<\/strong> como compilador, necesitamos agregar en el archivo <em>vite.config.js<\/em> lo siguiente:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">export default defineConfig({\r\n\t\u2026\r\n      resolve: {\r\n        alias: {\r\n            'vue': 'vue\/dist\/vue.esm-bundler.js'\r\n        },\r\n    },\r\n});\r<\/code><\/pre>\n\n\n\n<p>Nuevamente, volvemos a compilar y tendr\u00edamos solucionado el error para <strong>Configure your bundler to alias &#8220;vue&#8221; to &#8220;vue\/dist\/vue.esm-bundler.js&#8221;.<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Muchas veces al compilar Vue 3 en Laravel nos da la siguiente advertencia en la consola del navegador [Vue warn]: Component provided template option but runtime compilation is not supported in this build of Vue. Configure your bundler to alias &#8220;vue&#8221; to &#8220;vue\/dist\/vue.esm-bundler.js&#8221;. Para solucionar la advertencia necesitamos configurar el bundler con el alias \u201cvue\u201d, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1558,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[408,220,409],"tags":[425,426,66,226,251],"class_list":["post-1557","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-javascript","category-tutoriales","category-vuejs","tag-bundler","tag-esm","tag-javascript","tag-laravel","tag-vue-js"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Soluci\u00f3n: Vue.js \/ Laravel Component Provided Template\u2026 Configure your bundler to alias &quot;vue&quot;. - Latirus<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Soluci\u00f3n: Vue.js \/ Laravel Component Provided Template\u2026 Configure your bundler to alias &quot;vue&quot;. - Latirus\" \/>\n<meta property=\"og:description\" content=\"Muchas veces al compilar Vue 3 en Laravel nos da la siguiente advertencia en la consola del navegador [Vue warn]: Component provided template option but runtime compilation is not supported in this build of Vue. Configure your bundler to alias &#8220;vue&#8221; to &#8220;vue\/dist\/vue.esm-bundler.js&#8221;. Para solucionar la advertencia necesitamos configurar el bundler con el alias \u201cvue\u201d, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/\" \/>\n<meta property=\"og:site_name\" content=\"Latirus\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/latirus\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-01T17:17:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-08T22:07:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.latirus.com\/blog\/wp-content\/uploads\/2023\/02\/vue-esm-bundler.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1116\" \/>\n\t<meta property=\"og:image:height\" content=\"702\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Federico Perez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Federico Perez\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minuto\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"NewsArticle\",\"@id\":\"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/\"},\"author\":{\"name\":\"Federico Perez\",\"@id\":\"https:\/\/www.latirus.com\/blog\/#\/schema\/person\/aacf914583ee8f94bf64b989e164591c\"},\"headline\":\"Soluci\u00f3n: Vue.js \/ Laravel Component Provided Template\u2026 Configure your bundler to alias &#8220;vue&#8221;.\",\"datePublished\":\"2023-02-01T17:17:20+00:00\",\"dateModified\":\"2024-12-08T22:07:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/\"},\"wordCount\":206,\"publisher\":{\"@id\":\"https:\/\/www.latirus.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/www.latirus.com\/blog\/wp-content\/uploads\/2023\/02\/vue-esm-bundler.png?fit=1116%2C702&ssl=1\",\"keywords\":[\"Bundler\",\"ESM\",\"Javascript\",\"Laravel\",\"Vue.js\"],\"articleSection\":[\"Javascript\",\"Tutoriales\",\"Vuejs\"],\"inLanguage\":\"es-AR\"},{\"@type\":[\"WebPage\",\"ItemPage\"],\"@id\":\"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/\",\"url\":\"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/\",\"name\":\"Soluci\u00f3n: Vue.js \/ Laravel Component Provided Template\u2026 Configure your bundler to alias \\\"vue\\\". - Latirus\",\"isPartOf\":{\"@id\":\"https:\/\/www.latirus.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/www.latirus.com\/blog\/wp-content\/uploads\/2023\/02\/vue-esm-bundler.png?fit=1116%2C702&ssl=1\",\"datePublished\":\"2023-02-01T17:17:20+00:00\",\"dateModified\":\"2024-12-08T22:07:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/#breadcrumb\"},\"inLanguage\":\"es-AR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es-AR\",\"@id\":\"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/www.latirus.com\/blog\/wp-content\/uploads\/2023\/02\/vue-esm-bundler.png?fit=1116%2C702&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/www.latirus.com\/blog\/wp-content\/uploads\/2023\/02\/vue-esm-bundler.png?fit=1116%2C702&ssl=1\",\"width\":1116,\"height\":702,\"caption\":\"vue-esm-bundle\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Inicio\",\"item\":\"https:\/\/www.latirus.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Soluci\u00f3n: Vue.js \/ Laravel Component Provided Template\u2026 Configure your bundler to alias &#8220;vue&#8221;.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.latirus.com\/blog\/#website\",\"url\":\"https:\/\/www.latirus.com\/blog\/\",\"name\":\"Latirus\",\"description\":\"Desarrollo de Sistemas\",\"publisher\":{\"@id\":\"https:\/\/www.latirus.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.latirus.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es-AR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.latirus.com\/blog\/#organization\",\"name\":\"Latirus\",\"url\":\"https:\/\/www.latirus.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es-AR\",\"@id\":\"https:\/\/www.latirus.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.latirus.com\/blog\/wp-content\/uploads\/2020\/08\/latirus-logo-light.png\",\"contentUrl\":\"https:\/\/www.latirus.com\/blog\/wp-content\/uploads\/2020\/08\/latirus-logo-light.png\",\"width\":340,\"height\":150,\"caption\":\"Latirus\"},\"image\":{\"@id\":\"https:\/\/www.latirus.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/latirus\/\",\"https:\/\/linkedin.com\/company\/latirus\",\"https:\/\/www.youtube.com\/channel\/UCiTW7a7aDCBFg0qbIA5bq_Q\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.latirus.com\/blog\/#\/schema\/person\/aacf914583ee8f94bf64b989e164591c\",\"name\":\"Federico Perez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es-AR\",\"@id\":\"https:\/\/www.latirus.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/368c5b2c9e1744ec70feb6608555b474bc5119b36bdc7890e35d51216d231669?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/368c5b2c9e1744ec70feb6608555b474bc5119b36bdc7890e35d51216d231669?s=96&d=mm&r=g\",\"caption\":\"Federico Perez\"},\"sameAs\":[\"http:\/\/latirus.com\/blog\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Soluci\u00f3n: Vue.js \/ Laravel Component Provided Template\u2026 Configure your bundler to alias \"vue\". - Latirus","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:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/","og_locale":"es_ES","og_type":"article","og_title":"Soluci\u00f3n: Vue.js \/ Laravel Component Provided Template\u2026 Configure your bundler to alias \"vue\". - Latirus","og_description":"Muchas veces al compilar Vue 3 en Laravel nos da la siguiente advertencia en la consola del navegador [Vue warn]: Component provided template option but runtime compilation is not supported in this build of Vue. Configure your bundler to alias &#8220;vue&#8221; to &#8220;vue\/dist\/vue.esm-bundler.js&#8221;. Para solucionar la advertencia necesitamos configurar el bundler con el alias \u201cvue\u201d, [&hellip;]","og_url":"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/","og_site_name":"Latirus","article_publisher":"https:\/\/www.facebook.com\/latirus\/","article_published_time":"2023-02-01T17:17:20+00:00","article_modified_time":"2024-12-08T22:07:12+00:00","og_image":[{"width":1116,"height":702,"url":"https:\/\/www.latirus.com\/blog\/wp-content\/uploads\/2023\/02\/vue-esm-bundler.png","type":"image\/png"}],"author":"Federico Perez","twitter_card":"summary_large_image","twitter_misc":{"Escrito por":"Federico Perez","Tiempo de lectura":"1 minuto"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/#article","isPartOf":{"@id":"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/"},"author":{"name":"Federico Perez","@id":"https:\/\/www.latirus.com\/blog\/#\/schema\/person\/aacf914583ee8f94bf64b989e164591c"},"headline":"Soluci\u00f3n: Vue.js \/ Laravel Component Provided Template\u2026 Configure your bundler to alias &#8220;vue&#8221;.","datePublished":"2023-02-01T17:17:20+00:00","dateModified":"2024-12-08T22:07:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/"},"wordCount":206,"publisher":{"@id":"https:\/\/www.latirus.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.latirus.com\/blog\/wp-content\/uploads\/2023\/02\/vue-esm-bundler.png?fit=1116%2C702&ssl=1","keywords":["Bundler","ESM","Javascript","Laravel","Vue.js"],"articleSection":["Javascript","Tutoriales","Vuejs"],"inLanguage":"es-AR"},{"@type":["WebPage","ItemPage"],"@id":"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/","url":"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/","name":"Soluci\u00f3n: Vue.js \/ Laravel Component Provided Template\u2026 Configure your bundler to alias \"vue\". - Latirus","isPartOf":{"@id":"https:\/\/www.latirus.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/#primaryimage"},"image":{"@id":"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.latirus.com\/blog\/wp-content\/uploads\/2023\/02\/vue-esm-bundler.png?fit=1116%2C702&ssl=1","datePublished":"2023-02-01T17:17:20+00:00","dateModified":"2024-12-08T22:07:12+00:00","breadcrumb":{"@id":"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/#breadcrumb"},"inLanguage":"es-AR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/"]}]},{"@type":"ImageObject","inLanguage":"es-AR","@id":"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/#primaryimage","url":"https:\/\/i0.wp.com\/www.latirus.com\/blog\/wp-content\/uploads\/2023\/02\/vue-esm-bundler.png?fit=1116%2C702&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.latirus.com\/blog\/wp-content\/uploads\/2023\/02\/vue-esm-bundler.png?fit=1116%2C702&ssl=1","width":1116,"height":702,"caption":"vue-esm-bundle"},{"@type":"BreadcrumbList","@id":"https:\/\/www.latirus.com\/blog\/2023\/02\/01\/solucion-vue-js-laravel-component-provided-template-configure-your-bundler-to-alias-vue\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Inicio","item":"https:\/\/www.latirus.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Soluci\u00f3n: Vue.js \/ Laravel Component Provided Template\u2026 Configure your bundler to alias &#8220;vue&#8221;."}]},{"@type":"WebSite","@id":"https:\/\/www.latirus.com\/blog\/#website","url":"https:\/\/www.latirus.com\/blog\/","name":"Latirus","description":"Desarrollo de Sistemas","publisher":{"@id":"https:\/\/www.latirus.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.latirus.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es-AR"},{"@type":"Organization","@id":"https:\/\/www.latirus.com\/blog\/#organization","name":"Latirus","url":"https:\/\/www.latirus.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"es-AR","@id":"https:\/\/www.latirus.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.latirus.com\/blog\/wp-content\/uploads\/2020\/08\/latirus-logo-light.png","contentUrl":"https:\/\/www.latirus.com\/blog\/wp-content\/uploads\/2020\/08\/latirus-logo-light.png","width":340,"height":150,"caption":"Latirus"},"image":{"@id":"https:\/\/www.latirus.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/latirus\/","https:\/\/linkedin.com\/company\/latirus","https:\/\/www.youtube.com\/channel\/UCiTW7a7aDCBFg0qbIA5bq_Q"]},{"@type":"Person","@id":"https:\/\/www.latirus.com\/blog\/#\/schema\/person\/aacf914583ee8f94bf64b989e164591c","name":"Federico Perez","image":{"@type":"ImageObject","inLanguage":"es-AR","@id":"https:\/\/www.latirus.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/368c5b2c9e1744ec70feb6608555b474bc5119b36bdc7890e35d51216d231669?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/368c5b2c9e1744ec70feb6608555b474bc5119b36bdc7890e35d51216d231669?s=96&d=mm&r=g","caption":"Federico Perez"},"sameAs":["http:\/\/latirus.com\/blog"]}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/www.latirus.com\/blog\/wp-content\/uploads\/2023\/02\/vue-esm-bundler.png?fit=1116%2C702&ssl=1","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.latirus.com\/blog\/wp-json\/wp\/v2\/posts\/1557","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.latirus.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.latirus.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.latirus.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.latirus.com\/blog\/wp-json\/wp\/v2\/comments?post=1557"}],"version-history":[{"count":2,"href":"https:\/\/www.latirus.com\/blog\/wp-json\/wp\/v2\/posts\/1557\/revisions"}],"predecessor-version":[{"id":1560,"href":"https:\/\/www.latirus.com\/blog\/wp-json\/wp\/v2\/posts\/1557\/revisions\/1560"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.latirus.com\/blog\/wp-json\/wp\/v2\/media\/1558"}],"wp:attachment":[{"href":"https:\/\/www.latirus.com\/blog\/wp-json\/wp\/v2\/media?parent=1557"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.latirus.com\/blog\/wp-json\/wp\/v2\/categories?post=1557"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.latirus.com\/blog\/wp-json\/wp\/v2\/tags?post=1557"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}