cloudcommerce 0.1.6 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/ecomplus-stores/monocard/functions/core/package.json +1 -1
  3. package/ecomplus-stores/monocard/functions/events/package.json +2 -2
  4. package/ecomplus-stores/monocard/functions/modules/package.json +2 -2
  5. package/ecomplus-stores/monocard/functions/passport/package.json +2 -2
  6. package/ecomplus-stores/monocard/functions/ssr/package.json +9 -6
  7. package/ecomplus-stores/monocard/package.json +1 -1
  8. package/ecomplus-stores/tia-sonia/functions/core/package.json +1 -1
  9. package/ecomplus-stores/tia-sonia/functions/events/package.json +2 -2
  10. package/ecomplus-stores/tia-sonia/functions/modules/package.json +2 -2
  11. package/ecomplus-stores/tia-sonia/functions/passport/package.json +2 -2
  12. package/ecomplus-stores/tia-sonia/functions/ssr/package.json +9 -6
  13. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/{acai-com-granola.jpg → hero-acai-granola.jpg} +0 -0
  14. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/{cafe-com-tapioca-e-aveia.jpg → hero-cafe-tapioca-aveia.jpg} +0 -0
  15. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/hero-piquenique-snack-cookies.jpg +0 -0
  16. package/ecomplus-stores/tia-sonia/functions/ssr/src/assets/prices.css +3 -0
  17. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/CategoriesSlider.vue +19 -0
  18. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/HeroBanner.vue +112 -0
  19. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/PitchBar.vue +48 -16
  20. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/TheHeader.vue +39 -19
  21. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/header/HeaderNav.vue +4 -0
  22. package/ecomplus-stores/tia-sonia/functions/ssr/src/layouts/Base.astro +5 -3
  23. package/ecomplus-stores/tia-sonia/functions/ssr/src/main/Home.astro +55 -19
  24. package/ecomplus-stores/tia-sonia/functions/ssr/src/scripts/head-scripts.ts +15 -0
  25. package/ecomplus-stores/tia-sonia/functions/ssr/src/scripts/modules-info-preset.ts +27 -0
  26. package/ecomplus-stores/tia-sonia/package.json +1 -1
  27. package/package.json +7 -7
  28. package/packages/api/package.json +1 -1
  29. package/packages/apps/correios/package.json +2 -2
  30. package/packages/apps/custom-payment/package.json +1 -1
  31. package/packages/apps/custom-shipping/package.json +1 -1
  32. package/packages/apps/discounts/package.json +1 -1
  33. package/packages/apps/emails/package.json +1 -1
  34. package/packages/apps/fb-conversions/package.json +1 -1
  35. package/packages/apps/frenet/package.json +3 -3
  36. package/packages/apps/galaxpay/package.json +2 -2
  37. package/packages/apps/infinitepay/package.json +2 -2
  38. package/packages/apps/jadlog/package.json +2 -2
  39. package/packages/apps/loyalty-points/package.json +1 -1
  40. package/packages/apps/mercadopago/package.json +2 -2
  41. package/packages/apps/pagarme/package.json +2 -2
  42. package/packages/apps/pix/package.json +2 -2
  43. package/packages/apps/tiny-erp/package.json +2 -2
  44. package/packages/cli/package.json +1 -1
  45. package/packages/config/package.json +1 -1
  46. package/packages/emails/package.json +2 -2
  47. package/packages/events/package.json +1 -1
  48. package/packages/firebase/package.json +1 -1
  49. package/packages/i18n/package.json +1 -1
  50. package/packages/modules/package.json +2 -2
  51. package/packages/passport/package.json +1 -1
  52. package/packages/ssr/package.json +2 -2
  53. package/packages/storefront/client.d.ts +1 -0
  54. package/packages/storefront/dist/client/HeaderButtons.6f668467.js +1 -0
  55. package/packages/storefront/dist/client/Prices.2ada125b.js +1 -0
  56. package/packages/storefront/dist/client/ProductCard.e5bdea60.js +1 -0
  57. package/packages/storefront/dist/client/assets/{_...slug_.15bda576.css → _...slug_.81b9a00c.css} +1 -1
  58. package/packages/storefront/dist/client/chunks/{HeaderButtons.1abd5bf4.js → HeaderButtons.cfa275db.js} +1 -1
  59. package/packages/storefront/dist/client/chunks/{LoginForm.7e7d6137.js → LoginForm.1ba3ad0d.js} +1 -1
  60. package/packages/storefront/dist/client/chunks/Prices.vue_vue_type_script_setup_true_lang.9a6ab0d6.js +1 -0
  61. package/packages/storefront/dist/client/chunks/{_plugin-vue_export-helper.fc452b02.js → _plugin-vue_export-helper.0d33cd48.js} +1 -1
  62. package/packages/storefront/dist/client/chunks/{runtime-core.esm-bundler.b4556b35.js → runtime-core.esm-bundler.45ba83fa.js} +1 -1
  63. package/packages/storefront/dist/client/{client.2a3e5a58.js → client.4d2b3a73.js} +1 -1
  64. package/packages/storefront/dist/client/sw.js +1 -1
  65. package/packages/storefront/dist/server/entry.mjs +226 -214
  66. package/packages/storefront/package.json +4 -4
  67. package/packages/storefront/src/lib/components/Prices.vue +113 -98
  68. package/packages/storefront/src/lib/composables/use-prices.ts +19 -12
  69. package/packages/storefront/src/lib/ssr/image.ts +3 -2
  70. package/packages/storefront/src/lib/state/modules-info.ts +10 -4
  71. package/packages/types/package.json +1 -1
  72. package/ecomplus-stores/tia-sonia/functions/ssr/src/scripts/InlineScripts.astro +0 -10
  73. package/packages/storefront/dist/client/HeaderButtons.300c19e5.js +0 -1
  74. package/packages/storefront/dist/client/Prices.6c44a513.js +0 -1
  75. package/packages/storefront/dist/client/ProductCard.69bba7fc.js +0 -1
  76. package/packages/storefront/dist/client/chunks/Prices.vue_vue_type_script_setup_true_lang.e4525076.js +0 -1
@@ -7435,7 +7435,7 @@ function createComponent(arg1, moduleId) {
7435
7435
  }
7436
7436
  }
7437
7437
 
7438
- const ASTRO_VERSION = "1.7.2";
7438
+ const ASTRO_VERSION = "1.8.0";
7439
7439
 
7440
7440
  function createDeprecatedFetchContentFn() {
7441
7441
  return () => {
@@ -8020,6 +8020,16 @@ Expected \`true\` value but got \`${suffix}\`.`;
8020
8020
  message: (legacyConfigKey) => `Legacy configuration detected: \`${legacyConfigKey}\`.`,
8021
8021
  hint: "Please update your configuration to the new format.\nSee https://astro.build/config for more information."
8022
8022
  },
8023
+ UnknownCLIError: {
8024
+ title: "Unknown CLI Error.",
8025
+ code: 8e3
8026
+ },
8027
+ GenerateContentTypesError: {
8028
+ title: "Failed to generate content types.",
8029
+ code: 8001,
8030
+ message: "`astro sync` command failed to generate content collection types.",
8031
+ hint: "Check your `src/content/config.*` file for typos."
8032
+ },
8023
8033
  UnknownError: {
8024
8034
  title: "Unknown Error.",
8025
8035
  code: 99999
@@ -11575,7 +11585,7 @@ const getImage = async (options) => {
11575
11585
  options.aspectRatio = height ? width / height : 1;
11576
11586
  }
11577
11587
  }
11578
- const imgAttrs = await getImage$1(options);
11588
+ const imgAttrs = await getImage$1({ alt: "", ...options });
11579
11589
  imgAttrs.src += imgAttrs.src.includes("?") ? "&" : "?";
11580
11590
  imgAttrs.src += `V=${({}).DEPLOY_RAND || "_"}`;
11581
11591
  if (typeof imgAttrs.width === "number") {
@@ -12450,7 +12460,7 @@ const usePrices = (props) => {
12450
12460
  });
12451
12461
  const installmentValue = computed(() => {
12452
12462
  if (installmentsNumber.value >= 2) {
12453
- if (monthlyInterest.value) {
12463
+ if (!monthlyInterest.value) {
12454
12464
  return salePrice.value / installmentsNumber.value;
12455
12465
  }
12456
12466
  const interest = monthlyInterest.value / 100;
@@ -12466,7 +12476,14 @@ const usePrices = (props) => {
12466
12476
  return {};
12467
12477
  });
12468
12478
  const discountLabel = computed(() => {
12469
- return discountObject.value.label || "";
12479
+ const { label } = discountObject.value;
12480
+ if (label) {
12481
+ if (label.includes(" ")) {
12482
+ return label;
12483
+ }
12484
+ return `via ${label}`;
12485
+ }
12486
+ return "";
12470
12487
  });
12471
12488
  const priceWithDiscount = computed(() => {
12472
12489
  return getPriceWithDiscount(salePrice.value, discountObject.value);
@@ -12479,7 +12496,7 @@ const usePrices = (props) => {
12479
12496
  if (pointsPrograms) {
12480
12497
  const programIds = Object.keys(pointsPrograms);
12481
12498
  for (let i = 0; i < programIds.length; i++) {
12482
- const program = pointsPrograms[i];
12499
+ const program = pointsPrograms[programIds[i]];
12483
12500
  if (program && program.earn_percentage > 0) {
12484
12501
  return program;
12485
12502
  }
@@ -12496,11 +12513,11 @@ const usePrices = (props) => {
12496
12513
  const earnPointsPercentage = computed(() => {
12497
12514
  return pointsProgramObject.value.earn_percentage || 0;
12498
12515
  });
12499
- const earnPointsFactor = computed(() => {
12500
- return earnPointsPercentage.value / 100;
12516
+ const cashbackPercentage = computed(() => {
12517
+ return earnPointsPercentage.value * pointsProgramObject.value.ratio;
12501
12518
  });
12502
- const pointsCashback = computed(() => {
12503
- return earnPointsFactor.value > 0 ? salePrice.value * earnPointsFactor.value : 0;
12519
+ const cashbackValue = computed(() => {
12520
+ return cashbackPercentage.value >= 1 ? salePrice.value * (cashbackPercentage.value / 100) : 0;
12504
12521
  });
12505
12522
  return {
12506
12523
  hasVariedPrices,
@@ -12517,8 +12534,8 @@ const usePrices = (props) => {
12517
12534
  pointsMinPrice,
12518
12535
  pointsProgramName,
12519
12536
  earnPointsPercentage,
12520
- earnPointsFactor,
12521
- pointsCashback
12537
+ cashbackPercentage,
12538
+ cashbackValue
12522
12539
  };
12523
12540
  };
12524
12541
 
@@ -12556,8 +12573,8 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
12556
12573
  hasVariedPrices,
12557
12574
  salePrice,
12558
12575
  comparePrice,
12559
- earnPointsPercentage,
12560
- pointsCashback,
12576
+ cashbackPercentage,
12577
+ cashbackValue,
12561
12578
  installmentsNumber,
12562
12579
  monthlyInterest,
12563
12580
  installmentValue,
@@ -12565,222 +12582,217 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
12565
12582
  discountLabel
12566
12583
  } = prices;
12567
12584
  const componentVariant = useComponentVariant(props);
12568
- const isFade = ref(false);
12569
- setTimeout(() => {
12570
- isFade.value = true;
12571
- setTimeout(() => {
12572
- isFade.value = false;
12573
- }, 5e3);
12574
- }, 5e3);
12575
12585
  return (_ctx, _push, _parent, _attrs) => {
12576
12586
  const _component_Fade = resolveComponent("Fade");
12577
- ssrRenderSlot(_ctx.$slots, "default", unref(prices), () => {
12578
- _push(`<div${ssrRenderAttr("data-sf-prices", unref(componentVariant))} class="text-base-600">`);
12579
- if (unref(comparePrice)) {
12580
- ssrRenderSlot(_ctx.$slots, "compare", unref(prices), () => {
12581
- _push(`<span${ssrRenderAttr("data-sf-prices-compare", unref(comparePrice))} class="text-base-500 mr-1">`);
12582
- ssrRenderSlot(_ctx.$slots, "compare-pre", {}, () => {
12583
- if (__props.isLiteral) {
12584
- _push(`<small>${ssrInterpolate(`${"De"} `)}</small>`);
12585
- } else {
12586
- _push(`<!---->`);
12587
- }
12588
- }, _push, _parent);
12589
- ssrRenderSlot(_ctx.$slots, "compare-value", unref(prices), () => {
12590
- _push(`<s>${ssrInterpolate(_ctx.$money(unref(comparePrice)))}</s>`);
12591
- }, _push, _parent);
12592
- ssrRenderSlot(_ctx.$slots, "compare-post", {}, () => {
12593
- if (__props.isLiteral) {
12594
- _push(`<small>${ssrInterpolate(` ${"Por"}`)}</small>`);
12595
- } else {
12596
- _push(`<!---->`);
12597
- }
12598
- }, _push, _parent);
12599
- _push(`</span>`);
12600
- }, _push, _parent);
12601
- } else {
12602
- _push(`<!---->`);
12603
- }
12604
- ssrRenderSlot(_ctx.$slots, "sale", unref(prices), () => {
12605
- _push(`<strong${ssrRenderAttr("data-sf-prices-sale", unref(salePrice))} class="inline-block text-base-800">`);
12606
- ssrRenderSlot(_ctx.$slots, "sale-pre", {}, () => {
12607
- if (unref(hasVariedPrices)) {
12608
- _push(`<small>${ssrInterpolate(`${"A partir de"} `)}</small>`);
12587
+ _push(`<div${ssrRenderAttrs(mergeProps({
12588
+ "data-sf-prices": unref(componentVariant),
12589
+ class: "text-base-600"
12590
+ }, _attrs))}>`);
12591
+ if (unref(comparePrice)) {
12592
+ ssrRenderSlot(_ctx.$slots, "compare", { salePrice: unref(salePrice), comparePrice: unref(comparePrice) }, () => {
12593
+ _push(`<span${ssrRenderAttr("data-sf-prices-compare", unref(comparePrice))} class="text-base-500 mr-1">`);
12594
+ ssrRenderSlot(_ctx.$slots, "compare-pre", {}, () => {
12595
+ if (__props.isLiteral) {
12596
+ _push(`<small>${ssrInterpolate(`${"De"} `)}</small>`);
12609
12597
  } else {
12610
12598
  _push(`<!---->`);
12611
12599
  }
12612
12600
  }, _push, _parent);
12613
- ssrRenderSlot(_ctx.$slots, "sale-value", unref(prices), () => {
12614
- _push(`${ssrInterpolate(_ctx.$money(unref(salePrice)))}`);
12601
+ ssrRenderSlot(_ctx.$slots, "compare-value", { salePrice: unref(salePrice), comparePrice: unref(comparePrice) }, () => {
12602
+ _push(`<s>${ssrInterpolate(_ctx.$money(unref(comparePrice)))}</s>`);
12603
+ }, _push, _parent);
12604
+ ssrRenderSlot(_ctx.$slots, "compare-post", {}, () => {
12605
+ if (__props.isLiteral) {
12606
+ _push(`<small>${ssrInterpolate(` ${"Por"}`)}</small>`);
12607
+ } else {
12608
+ _push(`<!---->`);
12609
+ }
12615
12610
  }, _push, _parent);
12616
- ssrRenderSlot(_ctx.$slots, "sale-post", {}, null, _push, _parent);
12617
- _push(`</strong>`);
12611
+ _push(`</span>`);
12618
12612
  }, _push, _parent);
12619
- if (unref(pointsCashback)) {
12620
- ssrRenderSlot(_ctx.$slots, "cashback", unref(prices), () => {
12621
- _push(ssrRenderComponent(_component_Fade, { slide: "down" }, {
12622
- default: withCtx((_, _push2, _parent2, _scopeId) => {
12623
- if (_push2) {
12624
- if (__props.hasCashback) {
12625
- _push2(`<div${ssrRenderAttr("data-sf-prices-cashback", unref(pointsCashback))}${_scopeId}><span${ssrRenderAttr("data-tooltip", "Receba $1 de volta".replace("$1", _ctx.$percentage(unref(earnPointsPercentage))))}${_scopeId}>`);
12626
- ssrRenderSlot(_ctx.$slots, "cashback-pre", {}, () => {
12627
- _push2(`<i class="i-cashback mr-1"${_scopeId}></i>`);
12628
- }, _push2, _parent2, _scopeId);
12629
- ssrRenderSlot(_ctx.$slots, "cashback-value", unref(prices), () => {
12630
- _push2(`<span class="font-medium"${_scopeId}>${ssrInterpolate(_ctx.$money(unref(pointsCashback)))}</span>`);
12631
- }, _push2, _parent2, _scopeId);
12632
- ssrRenderSlot(_ctx.$slots, "cashback-post", {}, () => {
12633
- _push2(`<small${_scopeId}> cashback</small>`);
12634
- }, _push2, _parent2, _scopeId);
12635
- _push2(`</span></div>`);
12636
- } else {
12637
- _push2(`<!---->`);
12638
- }
12613
+ } else {
12614
+ _push(`<!---->`);
12615
+ }
12616
+ ssrRenderSlot(_ctx.$slots, "sale", { salePrice: unref(salePrice) }, () => {
12617
+ _push(`<strong${ssrRenderAttr("data-sf-prices-sale", unref(salePrice))} class="inline-block text-base-800">`);
12618
+ ssrRenderSlot(_ctx.$slots, "sale-pre", {}, () => {
12619
+ if (unref(hasVariedPrices)) {
12620
+ _push(`<small>${ssrInterpolate(`${"A partir de"} `)}</small>`);
12621
+ } else {
12622
+ _push(`<!---->`);
12623
+ }
12624
+ }, _push, _parent);
12625
+ ssrRenderSlot(_ctx.$slots, "sale-value", { salePrice: unref(salePrice) }, () => {
12626
+ _push(`${ssrInterpolate(_ctx.$money(unref(salePrice)))}`);
12627
+ }, _push, _parent);
12628
+ ssrRenderSlot(_ctx.$slots, "sale-post", {}, null, _push, _parent);
12629
+ _push(`</strong>`);
12630
+ }, _push, _parent);
12631
+ if (unref(cashbackValue)) {
12632
+ ssrRenderSlot(_ctx.$slots, "cashback", { salePrice: unref(salePrice), cashbackValue: unref(cashbackValue), cashbackPercentage: unref(cashbackPercentage) }, () => {
12633
+ _push(ssrRenderComponent(_component_Fade, { slide: "down" }, {
12634
+ default: withCtx((_, _push2, _parent2, _scopeId) => {
12635
+ if (_push2) {
12636
+ if (__props.hasCashback) {
12637
+ _push2(`<div${ssrRenderAttr("data-sf-prices-cashback", unref(cashbackValue))} class="relative z-10"${_scopeId}><span${ssrRenderAttr("data-tooltip", "Receba $1 de volta".replace("$1", _ctx.$percentage(unref(cashbackPercentage))))}${_scopeId}>`);
12638
+ ssrRenderSlot(_ctx.$slots, "cashback-pre", {}, () => {
12639
+ _push2(`<i class="i-cashback mr-1"${_scopeId}></i>`);
12640
+ }, _push2, _parent2, _scopeId);
12641
+ ssrRenderSlot(_ctx.$slots, "cashback-value", { salePrice: unref(salePrice), cashbackValue: unref(cashbackValue), cashbackPercentage: unref(cashbackPercentage) }, () => {
12642
+ _push2(`<span class="font-medium"${_scopeId}>${ssrInterpolate(_ctx.$money(unref(cashbackValue)))}</span>`);
12643
+ }, _push2, _parent2, _scopeId);
12644
+ ssrRenderSlot(_ctx.$slots, "cashback-post", {}, () => {
12645
+ _push2(`<small${_scopeId}> cashback</small>`);
12646
+ }, _push2, _parent2, _scopeId);
12647
+ _push2(`</span></div>`);
12639
12648
  } else {
12640
- return [
12641
- __props.hasCashback ? (openBlock(), createBlock("div", {
12642
- key: 0,
12643
- "data-sf-prices-cashback": unref(pointsCashback)
12644
- }, [
12645
- createVNode$1("span", {
12646
- "data-tooltip": "Receba $1 de volta".replace("$1", _ctx.$percentage(unref(earnPointsPercentage)))
12647
- }, [
12648
- renderSlot$1(_ctx.$slots, "cashback-pre", {}, () => [
12649
- createVNode$1("i", { class: "i-cashback mr-1" })
12650
- ]),
12651
- renderSlot$1(_ctx.$slots, "cashback-value", unref(prices), () => [
12652
- createVNode$1("span", { class: "font-medium" }, toDisplayString(_ctx.$money(unref(pointsCashback))), 1)
12653
- ]),
12654
- renderSlot$1(_ctx.$slots, "cashback-post", {}, () => [
12655
- createVNode$1("small", null, " cashback")
12656
- ])
12657
- ], 8, ["data-tooltip"])
12658
- ], 8, ["data-sf-prices-cashback"])) : createCommentVNode("", true)
12659
- ];
12649
+ _push2(`<!---->`);
12660
12650
  }
12661
- }),
12662
- _: 3
12663
- }, _parent));
12664
- }, _push, _parent);
12665
- } else {
12666
- _push(`<!---->`);
12667
- }
12668
- if (unref(installmentValue)) {
12669
- ssrRenderSlot(_ctx.$slots, "installment", unref(prices), () => {
12670
- _push(ssrRenderComponent(_component_Fade, { slide: "down" }, {
12671
- default: withCtx((_, _push2, _parent2, _scopeId) => {
12672
- if (_push2) {
12673
- if (__props.hasPriceOptions) {
12674
- _push2(`<div${ssrRenderAttr("data-sf-prices-installment", unref(installmentValue))}${_scopeId}>`);
12675
- ssrRenderSlot(_ctx.$slots, "installment-pre", {}, () => {
12676
- if (__props.isLiteral) {
12677
- _push2(`<small${_scopeId}>${ssrInterpolate(`${"At\xE9"} `)}</small>`);
12678
- } else {
12679
- _push2(`<!---->`);
12680
- }
12681
- }, _push2, _parent2, _scopeId);
12682
- ssrRenderSlot(_ctx.$slots, "installment-value", unref(prices), () => {
12683
- _push2(`${ssrInterpolate(unref(installmentsNumber))}x `);
12684
- if (__props.isLiteral) {
12685
- _push2(`<small${_scopeId}>${ssrInterpolate(` ${"De"} `)}</small>`);
12686
- } else {
12687
- _push2(`<!---->`);
12688
- }
12689
- _push2(`<span${_scopeId}>${ssrInterpolate(_ctx.$money(unref(installmentValue)))}</span>`);
12690
- }, _push2, _parent2, _scopeId);
12691
- ssrRenderSlot(_ctx.$slots, "installment-post", {}, () => {
12692
- if (!unref(monthlyInterest) && __props.isLiteral) {
12693
- _push2(`<small${_scopeId}>${ssrInterpolate("Sem juros")}</small>`);
12694
- } else {
12695
- _push2(`<!---->`);
12696
- }
12697
- }, _push2, _parent2, _scopeId);
12698
- _push2(`</div>`);
12699
- } else {
12700
- _push2(`<!---->`);
12701
- }
12702
- } else {
12703
- return [
12704
- __props.hasPriceOptions ? (openBlock(), createBlock("div", {
12705
- key: 0,
12706
- "data-sf-prices-installment": unref(installmentValue)
12651
+ } else {
12652
+ return [
12653
+ __props.hasCashback ? (openBlock(), createBlock("div", {
12654
+ key: 0,
12655
+ "data-sf-prices-cashback": unref(cashbackValue),
12656
+ class: "relative z-10"
12657
+ }, [
12658
+ createVNode$1("span", {
12659
+ "data-tooltip": "Receba $1 de volta".replace("$1", _ctx.$percentage(unref(cashbackPercentage)))
12707
12660
  }, [
12708
- renderSlot$1(_ctx.$slots, "installment-pre", {}, () => [
12709
- __props.isLiteral ? (openBlock(), createBlock("small", { key: 0 }, toDisplayString(`${"At\xE9"} `))) : createCommentVNode("", true)
12661
+ renderSlot$1(_ctx.$slots, "cashback-pre", {}, () => [
12662
+ createVNode$1("i", { class: "i-cashback mr-1" })
12710
12663
  ]),
12711
- renderSlot$1(_ctx.$slots, "installment-value", unref(prices), () => [
12712
- createTextVNode(toDisplayString(unref(installmentsNumber)) + "x ", 1),
12713
- __props.isLiteral ? (openBlock(), createBlock("small", { key: 0 }, toDisplayString(` ${"De"} `))) : createCommentVNode("", true),
12714
- createVNode$1("span", null, toDisplayString(_ctx.$money(unref(installmentValue))), 1)
12664
+ renderSlot$1(_ctx.$slots, "cashback-value", { salePrice: unref(salePrice), cashbackValue: unref(cashbackValue), cashbackPercentage: unref(cashbackPercentage) }, () => [
12665
+ createVNode$1("span", { class: "font-medium" }, toDisplayString(_ctx.$money(unref(cashbackValue))), 1)
12715
12666
  ]),
12716
- renderSlot$1(_ctx.$slots, "installment-post", {}, () => [
12717
- !unref(monthlyInterest) && __props.isLiteral ? (openBlock(), createBlock("small", { key: 0 }, toDisplayString("Sem juros"))) : createCommentVNode("", true)
12667
+ renderSlot$1(_ctx.$slots, "cashback-post", {}, () => [
12668
+ createVNode$1("small", null, " cashback")
12718
12669
  ])
12719
- ], 8, ["data-sf-prices-installment"])) : createCommentVNode("", true)
12720
- ];
12670
+ ], 8, ["data-tooltip"])
12671
+ ], 8, ["data-sf-prices-cashback"])) : createCommentVNode("", true)
12672
+ ];
12673
+ }
12674
+ }),
12675
+ _: 3
12676
+ }, _parent));
12677
+ }, _push, _parent);
12678
+ } else {
12679
+ _push(`<!---->`);
12680
+ }
12681
+ if (unref(installmentValue)) {
12682
+ ssrRenderSlot(_ctx.$slots, "installment", { salePrice: unref(salePrice), installmentValue: unref(installmentValue), installmentsNumber: unref(installmentsNumber), monthlyInterest: unref(monthlyInterest) }, () => {
12683
+ _push(ssrRenderComponent(_component_Fade, { slide: "down" }, {
12684
+ default: withCtx((_, _push2, _parent2, _scopeId) => {
12685
+ if (_push2) {
12686
+ if (__props.hasPriceOptions) {
12687
+ _push2(`<div${ssrRenderAttr("data-sf-prices-installment", unref(installmentValue))}${_scopeId}>`);
12688
+ ssrRenderSlot(_ctx.$slots, "installment-pre", {}, () => {
12689
+ if (__props.isLiteral) {
12690
+ _push2(`<small${_scopeId}>${ssrInterpolate(`${"At\xE9"} `)}</small>`);
12691
+ } else {
12692
+ _push2(`<!---->`);
12693
+ }
12694
+ }, _push2, _parent2, _scopeId);
12695
+ ssrRenderSlot(_ctx.$slots, "installment-value", { salePrice: unref(salePrice), installmentValue: unref(installmentValue), installmentsNumber: unref(installmentsNumber), monthlyInterest: unref(monthlyInterest) }, () => {
12696
+ _push2(`${ssrInterpolate(unref(installmentsNumber))}x `);
12697
+ if (__props.isLiteral) {
12698
+ _push2(`<small${_scopeId}>${ssrInterpolate(` ${"De"} `)}</small>`);
12699
+ } else {
12700
+ _push2(`<!---->`);
12701
+ }
12702
+ _push2(`<span${_scopeId}>${ssrInterpolate(_ctx.$money(unref(installmentValue)))}</span>`);
12703
+ }, _push2, _parent2, _scopeId);
12704
+ ssrRenderSlot(_ctx.$slots, "installment-post", {}, () => {
12705
+ if (!unref(monthlyInterest) && __props.isLiteral) {
12706
+ _push2(`<small${_scopeId}>${ssrInterpolate("Sem juros")}</small>`);
12707
+ } else {
12708
+ _push2(`<!---->`);
12709
+ }
12710
+ }, _push2, _parent2, _scopeId);
12711
+ _push2(`</div>`);
12712
+ } else {
12713
+ _push2(`<!---->`);
12721
12714
  }
12722
- }),
12723
- _: 3
12724
- }, _parent));
12725
- }, _push, _parent);
12726
- } else {
12727
- _push(`<!---->`);
12728
- }
12729
- if (unref(priceWithDiscount) < unref(salePrice)) {
12730
- ssrRenderSlot(_ctx.$slots, "discount", unref(prices), () => {
12731
- _push(ssrRenderComponent(_component_Fade, { slide: "down" }, {
12732
- default: withCtx((_, _push2, _parent2, _scopeId) => {
12733
- if (_push2) {
12734
- if (__props.hasPriceOptions) {
12735
- _push2(`<div${ssrRenderAttr("data-sf-prices-discount", unref(priceWithDiscount))}${_scopeId}>`);
12736
- ssrRenderSlot(_ctx.$slots, "discount-pre", {}, () => {
12737
- if (!unref(discountLabel)) {
12738
- _push2(`<small${_scopeId}>${ssrInterpolate(`${"A partir de"} `)}</small>`);
12739
- } else {
12740
- _push2(`<!---->`);
12741
- }
12742
- }, _push2, _parent2, _scopeId);
12743
- ssrRenderSlot(_ctx.$slots, "discount-value", unref(prices), () => {
12744
- _push2(`<span${_scopeId}>${ssrInterpolate(_ctx.$money(unref(priceWithDiscount)))}</span>`);
12745
- }, _push2, _parent2, _scopeId);
12746
- ssrRenderSlot(_ctx.$slots, "discount-post", {}, () => {
12747
- if (unref(discountLabel)) {
12748
- _push2(`<small${_scopeId}>${ssrInterpolate(` ${unref(discountLabel)}`)}</small>`);
12749
- } else {
12750
- _push2(`<!---->`);
12751
- }
12752
- }, _push2, _parent2, _scopeId);
12753
- _push2(`</div>`);
12754
- } else {
12755
- _push2(`<!---->`);
12756
- }
12715
+ } else {
12716
+ return [
12717
+ __props.hasPriceOptions ? (openBlock(), createBlock("div", {
12718
+ key: 0,
12719
+ "data-sf-prices-installment": unref(installmentValue)
12720
+ }, [
12721
+ renderSlot$1(_ctx.$slots, "installment-pre", {}, () => [
12722
+ __props.isLiteral ? (openBlock(), createBlock("small", { key: 0 }, toDisplayString(`${"At\xE9"} `))) : createCommentVNode("", true)
12723
+ ]),
12724
+ renderSlot$1(_ctx.$slots, "installment-value", { salePrice: unref(salePrice), installmentValue: unref(installmentValue), installmentsNumber: unref(installmentsNumber), monthlyInterest: unref(monthlyInterest) }, () => [
12725
+ createTextVNode(toDisplayString(unref(installmentsNumber)) + "x ", 1),
12726
+ __props.isLiteral ? (openBlock(), createBlock("small", { key: 0 }, toDisplayString(` ${"De"} `))) : createCommentVNode("", true),
12727
+ createVNode$1("span", null, toDisplayString(_ctx.$money(unref(installmentValue))), 1)
12728
+ ]),
12729
+ renderSlot$1(_ctx.$slots, "installment-post", {}, () => [
12730
+ !unref(monthlyInterest) && __props.isLiteral ? (openBlock(), createBlock("small", { key: 0 }, toDisplayString("Sem juros"))) : createCommentVNode("", true)
12731
+ ])
12732
+ ], 8, ["data-sf-prices-installment"])) : createCommentVNode("", true)
12733
+ ];
12734
+ }
12735
+ }),
12736
+ _: 3
12737
+ }, _parent));
12738
+ }, _push, _parent);
12739
+ } else {
12740
+ _push(`<!---->`);
12741
+ }
12742
+ if (unref(priceWithDiscount) < unref(salePrice)) {
12743
+ ssrRenderSlot(_ctx.$slots, "discount", { salePrice: unref(salePrice), priceWithDiscount: unref(priceWithDiscount), discountLabel: unref(discountLabel) }, () => {
12744
+ _push(ssrRenderComponent(_component_Fade, { slide: "down" }, {
12745
+ default: withCtx((_, _push2, _parent2, _scopeId) => {
12746
+ if (_push2) {
12747
+ if (__props.hasPriceOptions) {
12748
+ _push2(`<div${ssrRenderAttr("data-sf-prices-discount", unref(priceWithDiscount))}${_scopeId}>`);
12749
+ ssrRenderSlot(_ctx.$slots, "discount-pre", {}, () => {
12750
+ if (!unref(discountLabel)) {
12751
+ _push2(`<small${_scopeId}>${ssrInterpolate(`${"A partir de"} `)}</small>`);
12752
+ } else {
12753
+ _push2(`<!---->`);
12754
+ }
12755
+ }, _push2, _parent2, _scopeId);
12756
+ ssrRenderSlot(_ctx.$slots, "discount-value", { salePrice: unref(salePrice), priceWithDiscount: unref(priceWithDiscount), discountLabel: unref(discountLabel) }, () => {
12757
+ _push2(`<span${_scopeId}>${ssrInterpolate(_ctx.$money(unref(priceWithDiscount)))}</span>`);
12758
+ }, _push2, _parent2, _scopeId);
12759
+ ssrRenderSlot(_ctx.$slots, "discount-post", {}, () => {
12760
+ if (unref(discountLabel)) {
12761
+ _push2(`<small${_scopeId}>${ssrInterpolate(` ${unref(discountLabel)}`)}</small>`);
12762
+ } else {
12763
+ _push2(`<!---->`);
12764
+ }
12765
+ }, _push2, _parent2, _scopeId);
12766
+ _push2(`</div>`);
12757
12767
  } else {
12758
- return [
12759
- __props.hasPriceOptions ? (openBlock(), createBlock("div", {
12760
- key: 0,
12761
- "data-sf-prices-discount": unref(priceWithDiscount)
12762
- }, [
12763
- renderSlot$1(_ctx.$slots, "discount-pre", {}, () => [
12764
- !unref(discountLabel) ? (openBlock(), createBlock("small", { key: 0 }, toDisplayString(`${"A partir de"} `))) : createCommentVNode("", true)
12765
- ]),
12766
- renderSlot$1(_ctx.$slots, "discount-value", unref(prices), () => [
12767
- createVNode$1("span", null, toDisplayString(_ctx.$money(unref(priceWithDiscount))), 1)
12768
- ]),
12769
- renderSlot$1(_ctx.$slots, "discount-post", {}, () => [
12770
- unref(discountLabel) ? (openBlock(), createBlock("small", { key: 0 }, toDisplayString(` ${unref(discountLabel)}`), 1)) : createCommentVNode("", true)
12771
- ])
12772
- ], 8, ["data-sf-prices-discount"])) : createCommentVNode("", true)
12773
- ];
12768
+ _push2(`<!---->`);
12774
12769
  }
12775
- }),
12776
- _: 3
12777
- }, _parent));
12778
- }, _push, _parent);
12779
- } else {
12780
- _push(`<!---->`);
12781
- }
12782
- _push(`</div>`);
12783
- }, _push, _parent);
12770
+ } else {
12771
+ return [
12772
+ __props.hasPriceOptions ? (openBlock(), createBlock("div", {
12773
+ key: 0,
12774
+ "data-sf-prices-discount": unref(priceWithDiscount)
12775
+ }, [
12776
+ renderSlot$1(_ctx.$slots, "discount-pre", {}, () => [
12777
+ !unref(discountLabel) ? (openBlock(), createBlock("small", { key: 0 }, toDisplayString(`${"A partir de"} `))) : createCommentVNode("", true)
12778
+ ]),
12779
+ renderSlot$1(_ctx.$slots, "discount-value", { salePrice: unref(salePrice), priceWithDiscount: unref(priceWithDiscount), discountLabel: unref(discountLabel) }, () => [
12780
+ createVNode$1("span", null, toDisplayString(_ctx.$money(unref(priceWithDiscount))), 1)
12781
+ ]),
12782
+ renderSlot$1(_ctx.$slots, "discount-post", {}, () => [
12783
+ unref(discountLabel) ? (openBlock(), createBlock("small", { key: 0 }, toDisplayString(` ${unref(discountLabel)}`), 1)) : createCommentVNode("", true)
12784
+ ])
12785
+ ], 8, ["data-sf-prices-discount"])) : createCommentVNode("", true)
12786
+ ];
12787
+ }
12788
+ }),
12789
+ _: 3
12790
+ }, _parent));
12791
+ }, _push, _parent);
12792
+ } else {
12793
+ _push(`<!---->`);
12794
+ }
12795
+ _push(`</div>`);
12784
12796
  };
12785
12797
  }
12786
12798
  });
@@ -13122,10 +13134,10 @@ const _page5 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
13122
13134
  url: $$url
13123
13135
  }, Symbol.toStringTag, { value: 'Module' }));
13124
13136
 
13125
- const pageMap = new Map([['../../node_modules/.pnpm/@astrojs+image@0.12.1_sharp@0.31.3/node_modules/@astrojs/image/dist/endpoint.js', _page0],['src/pages/index.astro', _page1],['src/pages/fallback.astro', _page2],['src/pages/app/index.astro', _page3],['src/pages/app/account.astro', _page4],['src/pages/[...slug].astro', _page5],]);
13137
+ const pageMap = new Map([["../../node_modules/.pnpm/@astrojs+image@0.12.1_sharp@0.31.3/node_modules/@astrojs/image/dist/endpoint.js", _page0],["src/pages/index.astro", _page1],["src/pages/fallback.astro", _page2],["src/pages/app/index.astro", _page3],["src/pages/app/account.astro", _page4],["src/pages/[...slug].astro", _page5],]);
13126
13138
  const renderers = [Object.assign({"name":"astro:jsx","serverEntrypoint":"astro/jsx/server.js","jsxImportSource":"astro"}, { ssr: server_default }),Object.assign({"name":"@astrojs/vue","clientEntrypoint":"@astrojs/vue/client.js","serverEntrypoint":"@astrojs/vue/server.js"}, { ssr: _renderer1 }),];
13127
13139
 
13128
- const _manifest = Object.assign(deserializeManifest({"adapterName":"@astrojs/node","routes":[{"file":"","links":[],"scripts":[{"type":"external","value":"page.5a6f3db5.js"},{"stage":"head-inline","children":"!(function(w,p,f,c){c=w[p]=Object.assign(w[p]||{},{\"lib\":\"/~partytown/\",\"debug\":false});c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.7.3 - MIT builder.io */\n!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,\"/\"==(a=(o.lib||\"/~partytown/\")+(o.debug?\"debug/\":\"\"))[0]&&(s=e.querySelectorAll('script[type=\"text/partytown\"]'),i!=t?i.dispatchEvent(new CustomEvent(\"pt1\",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener(\"pt0\",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||\"partytown-sw.js\"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener(\"statechange\",(function(t){\"activated\"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?\"script\":\"iframe\"),t||(c.setAttribute(\"style\",\"display:block;width:0;height:0;border:0;visibility:hidden\"),c.setAttribute(\"aria-hidden\",!0)),c.src=a+\"partytown-\"+(t?\"atomics.js?v=0.7.3\":\"sandbox-sw.html?\"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement(\"script\")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(\".\").map((function(e,n,i){p=p[i[n]]=n+1<i.length?\"push\"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),\"complete\"==e.readyState?u():(t.addEventListener(\"DOMContentLoaded\",u),t.addEventListener(\"load\",u))}(window,document,navigator,top,window.crossOriginIsolated);"}],"routeData":{"type":"endpoint","route":"/_image","pattern":"^\\/_image$","segments":[[{"content":"_image","dynamic":false,"spread":false}]],"params":[],"component":"../../node_modules/.pnpm/@astrojs+image@0.12.1_sharp@0.31.3/node_modules/@astrojs/image/dist/endpoint.js","pathname":"/_image","_meta":{"trailingSlash":"ignore"}}},{"file":"","links":["assets/_...slug_.15bda576.css","assets/index.e6a09532.css"],"scripts":[{"type":"external","value":"hoisted.f6ee2883.js"},{"type":"external","value":"page.5a6f3db5.js"},{"stage":"head-inline","children":"!(function(w,p,f,c){c=w[p]=Object.assign(w[p]||{},{\"lib\":\"/~partytown/\",\"debug\":false});c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.7.3 - MIT builder.io */\n!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,\"/\"==(a=(o.lib||\"/~partytown/\")+(o.debug?\"debug/\":\"\"))[0]&&(s=e.querySelectorAll('script[type=\"text/partytown\"]'),i!=t?i.dispatchEvent(new CustomEvent(\"pt1\",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener(\"pt0\",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||\"partytown-sw.js\"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener(\"statechange\",(function(t){\"activated\"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?\"script\":\"iframe\"),t||(c.setAttribute(\"style\",\"display:block;width:0;height:0;border:0;visibility:hidden\"),c.setAttribute(\"aria-hidden\",!0)),c.src=a+\"partytown-\"+(t?\"atomics.js?v=0.7.3\":\"sandbox-sw.html?\"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement(\"script\")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(\".\").map((function(e,n,i){p=p[i[n]]=n+1<i.length?\"push\"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),\"complete\"==e.readyState?u():(t.addEventListener(\"DOMContentLoaded\",u),t.addEventListener(\"load\",u))}(window,document,navigator,top,window.crossOriginIsolated);"}],"routeData":{"route":"/","type":"page","pattern":"^\\/$","segments":[],"params":[],"component":"src/pages/index.astro","pathname":"/","_meta":{"trailingSlash":"ignore"}}},{"file":"","links":["assets/_...slug_.15bda576.css"],"scripts":[{"type":"external","value":"hoisted.f6ee2883.js"},{"type":"external","value":"page.5a6f3db5.js"},{"stage":"head-inline","children":"!(function(w,p,f,c){c=w[p]=Object.assign(w[p]||{},{\"lib\":\"/~partytown/\",\"debug\":false});c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.7.3 - MIT builder.io */\n!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,\"/\"==(a=(o.lib||\"/~partytown/\")+(o.debug?\"debug/\":\"\"))[0]&&(s=e.querySelectorAll('script[type=\"text/partytown\"]'),i!=t?i.dispatchEvent(new CustomEvent(\"pt1\",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener(\"pt0\",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||\"partytown-sw.js\"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener(\"statechange\",(function(t){\"activated\"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?\"script\":\"iframe\"),t||(c.setAttribute(\"style\",\"display:block;width:0;height:0;border:0;visibility:hidden\"),c.setAttribute(\"aria-hidden\",!0)),c.src=a+\"partytown-\"+(t?\"atomics.js?v=0.7.3\":\"sandbox-sw.html?\"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement(\"script\")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(\".\").map((function(e,n,i){p=p[i[n]]=n+1<i.length?\"push\"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),\"complete\"==e.readyState?u():(t.addEventListener(\"DOMContentLoaded\",u),t.addEventListener(\"load\",u))}(window,document,navigator,top,window.crossOriginIsolated);"}],"routeData":{"route":"/fallback","type":"page","pattern":"^\\/fallback\\/?$","segments":[[{"content":"fallback","dynamic":false,"spread":false}]],"params":[],"component":"src/pages/fallback.astro","pathname":"/fallback","_meta":{"trailingSlash":"ignore"}}},{"file":"","links":[],"scripts":[{"type":"external","value":"page.5a6f3db5.js"},{"stage":"head-inline","children":"!(function(w,p,f,c){c=w[p]=Object.assign(w[p]||{},{\"lib\":\"/~partytown/\",\"debug\":false});c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.7.3 - MIT builder.io */\n!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,\"/\"==(a=(o.lib||\"/~partytown/\")+(o.debug?\"debug/\":\"\"))[0]&&(s=e.querySelectorAll('script[type=\"text/partytown\"]'),i!=t?i.dispatchEvent(new CustomEvent(\"pt1\",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener(\"pt0\",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||\"partytown-sw.js\"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener(\"statechange\",(function(t){\"activated\"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?\"script\":\"iframe\"),t||(c.setAttribute(\"style\",\"display:block;width:0;height:0;border:0;visibility:hidden\"),c.setAttribute(\"aria-hidden\",!0)),c.src=a+\"partytown-\"+(t?\"atomics.js?v=0.7.3\":\"sandbox-sw.html?\"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement(\"script\")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(\".\").map((function(e,n,i){p=p[i[n]]=n+1<i.length?\"push\"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),\"complete\"==e.readyState?u():(t.addEventListener(\"DOMContentLoaded\",u),t.addEventListener(\"load\",u))}(window,document,navigator,top,window.crossOriginIsolated);"}],"routeData":{"route":"/app","type":"page","pattern":"^\\/app\\/?$","segments":[[{"content":"app","dynamic":false,"spread":false}]],"params":[],"component":"src/pages/app/index.astro","pathname":"/app","_meta":{"trailingSlash":"ignore"}}},{"file":"","links":[],"scripts":[{"type":"external","value":"page.5a6f3db5.js"},{"stage":"head-inline","children":"!(function(w,p,f,c){c=w[p]=Object.assign(w[p]||{},{\"lib\":\"/~partytown/\",\"debug\":false});c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.7.3 - MIT builder.io */\n!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,\"/\"==(a=(o.lib||\"/~partytown/\")+(o.debug?\"debug/\":\"\"))[0]&&(s=e.querySelectorAll('script[type=\"text/partytown\"]'),i!=t?i.dispatchEvent(new CustomEvent(\"pt1\",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener(\"pt0\",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||\"partytown-sw.js\"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener(\"statechange\",(function(t){\"activated\"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?\"script\":\"iframe\"),t||(c.setAttribute(\"style\",\"display:block;width:0;height:0;border:0;visibility:hidden\"),c.setAttribute(\"aria-hidden\",!0)),c.src=a+\"partytown-\"+(t?\"atomics.js?v=0.7.3\":\"sandbox-sw.html?\"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement(\"script\")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(\".\").map((function(e,n,i){p=p[i[n]]=n+1<i.length?\"push\"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),\"complete\"==e.readyState?u():(t.addEventListener(\"DOMContentLoaded\",u),t.addEventListener(\"load\",u))}(window,document,navigator,top,window.crossOriginIsolated);"}],"routeData":{"route":"/app/account","type":"page","pattern":"^\\/app\\/account\\/?$","segments":[[{"content":"app","dynamic":false,"spread":false}],[{"content":"account","dynamic":false,"spread":false}]],"params":[],"component":"src/pages/app/account.astro","pathname":"/app/account","_meta":{"trailingSlash":"ignore"}}},{"file":"","links":["assets/_...slug_.15bda576.css"],"scripts":[{"type":"external","value":"hoisted.f6ee2883.js"},{"type":"external","value":"page.5a6f3db5.js"},{"stage":"head-inline","children":"!(function(w,p,f,c){c=w[p]=Object.assign(w[p]||{},{\"lib\":\"/~partytown/\",\"debug\":false});c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.7.3 - MIT builder.io */\n!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,\"/\"==(a=(o.lib||\"/~partytown/\")+(o.debug?\"debug/\":\"\"))[0]&&(s=e.querySelectorAll('script[type=\"text/partytown\"]'),i!=t?i.dispatchEvent(new CustomEvent(\"pt1\",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener(\"pt0\",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||\"partytown-sw.js\"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener(\"statechange\",(function(t){\"activated\"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?\"script\":\"iframe\"),t||(c.setAttribute(\"style\",\"display:block;width:0;height:0;border:0;visibility:hidden\"),c.setAttribute(\"aria-hidden\",!0)),c.src=a+\"partytown-\"+(t?\"atomics.js?v=0.7.3\":\"sandbox-sw.html?\"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement(\"script\")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(\".\").map((function(e,n,i){p=p[i[n]]=n+1<i.length?\"push\"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),\"complete\"==e.readyState?u():(t.addEventListener(\"DOMContentLoaded\",u),t.addEventListener(\"load\",u))}(window,document,navigator,top,window.crossOriginIsolated);"}],"routeData":{"route":"/[...slug]","type":"page","pattern":"^(?:\\/(.*?))?\\/?$","segments":[[{"content":"...slug","dynamic":true,"spread":true}]],"params":["...slug"],"component":"src/pages/[...slug].astro","_meta":{"trailingSlash":"ignore"}}}],"site":"https://ecom2-002.web.app/","base":"/","markdown":{"drafts":false,"syntaxHighlight":"shiki","shikiConfig":{"langs":[],"theme":"github-dark","wrap":false},"remarkPlugins":[],"rehypePlugins":[],"remarkRehype":{},"extendDefaultPlugins":false,"isAstroFlavoredMd":false},"pageMap":null,"renderers":[],"entryModules":{"\u0000@astrojs-ssr-virtual-entry":"entry.mjs","@@sf/components/Prices.vue":"Prices.6c44a513.js","@@sf/components/ProductCard.vue":"ProductCard.69bba7fc.js","@astrojs/vue/client.js":"client.2a3e5a58.js","/astro/hoisted.js?q=0":"hoisted.f6ee2883.js","astro:scripts/page.js":"page.5a6f3db5.js","@@components/header/HeaderButtons.vue":"HeaderButtons.300c19e5.js","/home/leo/code/ecomplus/cloud-commerce/packages/storefront/src/lib/components/LoginForm.vue":"chunks/LoginForm.7e7d6137.js","/home/leo/code/ecomplus/cloud-commerce/node_modules/workbox-window/build/workbox-window.prod.es5.mjs":"chunks/workbox-window.prod.es5.10f2e5ac.js","astro:scripts/before-hydration.js":""},"assets":["/assets/index.e6a09532.css","/assets/server.4d9646d8.css","/assets/_...slug_.15bda576.css","/manifest.webmanifest","/registerSW.js","/HeaderButtons.300c19e5.js","/Prices.6c44a513.js","/ProductCard.69bba7fc.js","/client.2a3e5a58.js","/hoisted.f6ee2883.js","/page.5a6f3db5.js","/robots.txt","/sw.js","/workbox-abdc68aa.js","/admin/config.json","/assets/cms-preview.css","/assets/cms.css","/assets/cvv.png","/assets/img-placeholder.png","/assets/payments.png","/assets/ssl-safe.png","/chunks/HeaderButtons.1abd5bf4.js","/chunks/LoginForm.7e7d6137.js","/chunks/Prices.vue_vue_type_script_setup_true_lang.e4525076.js","/chunks/_plugin-vue_export-helper.fc452b02.js","/chunks/ecom-utils.b0a26608.js","/chunks/preload-helper.1de719f8.js","/chunks/price.ecf7fed4.js","/chunks/runtime-core.esm-bundler.b4556b35.js","/chunks/session-utm.2de8b604.js","/chunks/workbox-window.prod.es5.10f2e5ac.js","/img/icon.png","/img/large-icon.png","/img/uploads/banner1.png","/img/uploads/banner2.png","/img/uploads/banner2.webp","/img/uploads/favicon.png","/img/uploads/headless.png","/img/uploads/headphone.png","/img/uploads/headphone.webp","/img/uploads/icon.png","/img/uploads/large-icon.png","/img/uploads/logo.png","/img/uploads/logo.webp","/img/uploads/og-image.png","/img/uploads/passion.png","/img/uploads/passion.webp","/img/uploads/pwa-reliable.png","/img/uploads/rect8589.png","/img/uploads/rect859.png","/img/uploads/rect89.png","/img/uploads/rect89.webp","/img/uploads/ssl-safe.png","/assets/icons/bootstrap-icons/font/storefront-icons.woff2","/assets/icons/feather-icons/font/storefront-icons.woff2","/assets/icons/font-awesome/font/storefront-icons.woff2","/assets/icons/line-awesome/font/storefront-icons.woff2","/assets/icons/tabler-icons/font/storefront-icons.woff2","/page.5a6f3db5.js","/~partytown/partytown-atomics.js","/~partytown/partytown-media.js","/~partytown/partytown-sw.js","/~partytown/partytown.js"]}), {
13140
+ const _manifest = Object.assign(deserializeManifest({"adapterName":"@astrojs/node","routes":[{"file":"","links":[],"scripts":[{"type":"external","value":"page.5a6f3db5.js"},{"stage":"head-inline","children":"!(function(w,p,f,c){c=w[p]=Object.assign(w[p]||{},{\"lib\":\"/~partytown/\",\"debug\":false});c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.7.3 - MIT builder.io */\n!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,\"/\"==(a=(o.lib||\"/~partytown/\")+(o.debug?\"debug/\":\"\"))[0]&&(s=e.querySelectorAll('script[type=\"text/partytown\"]'),i!=t?i.dispatchEvent(new CustomEvent(\"pt1\",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener(\"pt0\",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||\"partytown-sw.js\"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener(\"statechange\",(function(t){\"activated\"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?\"script\":\"iframe\"),t||(c.setAttribute(\"style\",\"display:block;width:0;height:0;border:0;visibility:hidden\"),c.setAttribute(\"aria-hidden\",!0)),c.src=a+\"partytown-\"+(t?\"atomics.js?v=0.7.3\":\"sandbox-sw.html?\"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement(\"script\")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(\".\").map((function(e,n,i){p=p[i[n]]=n+1<i.length?\"push\"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),\"complete\"==e.readyState?u():(t.addEventListener(\"DOMContentLoaded\",u),t.addEventListener(\"load\",u))}(window,document,navigator,top,window.crossOriginIsolated);"}],"routeData":{"type":"endpoint","route":"/_image","pattern":"^\\/_image$","segments":[[{"content":"_image","dynamic":false,"spread":false}]],"params":[],"component":"../../node_modules/.pnpm/@astrojs+image@0.12.1_sharp@0.31.3/node_modules/@astrojs/image/dist/endpoint.js","pathname":"/_image","_meta":{"trailingSlash":"ignore"}}},{"file":"","links":["assets/_...slug_.81b9a00c.css","assets/index.e6a09532.css"],"scripts":[{"type":"external","value":"hoisted.f6ee2883.js"},{"type":"external","value":"page.5a6f3db5.js"},{"stage":"head-inline","children":"!(function(w,p,f,c){c=w[p]=Object.assign(w[p]||{},{\"lib\":\"/~partytown/\",\"debug\":false});c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.7.3 - MIT builder.io */\n!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,\"/\"==(a=(o.lib||\"/~partytown/\")+(o.debug?\"debug/\":\"\"))[0]&&(s=e.querySelectorAll('script[type=\"text/partytown\"]'),i!=t?i.dispatchEvent(new CustomEvent(\"pt1\",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener(\"pt0\",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||\"partytown-sw.js\"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener(\"statechange\",(function(t){\"activated\"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?\"script\":\"iframe\"),t||(c.setAttribute(\"style\",\"display:block;width:0;height:0;border:0;visibility:hidden\"),c.setAttribute(\"aria-hidden\",!0)),c.src=a+\"partytown-\"+(t?\"atomics.js?v=0.7.3\":\"sandbox-sw.html?\"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement(\"script\")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(\".\").map((function(e,n,i){p=p[i[n]]=n+1<i.length?\"push\"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),\"complete\"==e.readyState?u():(t.addEventListener(\"DOMContentLoaded\",u),t.addEventListener(\"load\",u))}(window,document,navigator,top,window.crossOriginIsolated);"}],"routeData":{"route":"/","type":"page","pattern":"^\\/$","segments":[],"params":[],"component":"src/pages/index.astro","pathname":"/","_meta":{"trailingSlash":"ignore"}}},{"file":"","links":["assets/_...slug_.81b9a00c.css"],"scripts":[{"type":"external","value":"hoisted.f6ee2883.js"},{"type":"external","value":"page.5a6f3db5.js"},{"stage":"head-inline","children":"!(function(w,p,f,c){c=w[p]=Object.assign(w[p]||{},{\"lib\":\"/~partytown/\",\"debug\":false});c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.7.3 - MIT builder.io */\n!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,\"/\"==(a=(o.lib||\"/~partytown/\")+(o.debug?\"debug/\":\"\"))[0]&&(s=e.querySelectorAll('script[type=\"text/partytown\"]'),i!=t?i.dispatchEvent(new CustomEvent(\"pt1\",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener(\"pt0\",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||\"partytown-sw.js\"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener(\"statechange\",(function(t){\"activated\"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?\"script\":\"iframe\"),t||(c.setAttribute(\"style\",\"display:block;width:0;height:0;border:0;visibility:hidden\"),c.setAttribute(\"aria-hidden\",!0)),c.src=a+\"partytown-\"+(t?\"atomics.js?v=0.7.3\":\"sandbox-sw.html?\"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement(\"script\")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(\".\").map((function(e,n,i){p=p[i[n]]=n+1<i.length?\"push\"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),\"complete\"==e.readyState?u():(t.addEventListener(\"DOMContentLoaded\",u),t.addEventListener(\"load\",u))}(window,document,navigator,top,window.crossOriginIsolated);"}],"routeData":{"route":"/fallback","type":"page","pattern":"^\\/fallback\\/?$","segments":[[{"content":"fallback","dynamic":false,"spread":false}]],"params":[],"component":"src/pages/fallback.astro","pathname":"/fallback","_meta":{"trailingSlash":"ignore"}}},{"file":"","links":[],"scripts":[{"type":"external","value":"page.5a6f3db5.js"},{"stage":"head-inline","children":"!(function(w,p,f,c){c=w[p]=Object.assign(w[p]||{},{\"lib\":\"/~partytown/\",\"debug\":false});c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.7.3 - MIT builder.io */\n!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,\"/\"==(a=(o.lib||\"/~partytown/\")+(o.debug?\"debug/\":\"\"))[0]&&(s=e.querySelectorAll('script[type=\"text/partytown\"]'),i!=t?i.dispatchEvent(new CustomEvent(\"pt1\",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener(\"pt0\",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||\"partytown-sw.js\"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener(\"statechange\",(function(t){\"activated\"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?\"script\":\"iframe\"),t||(c.setAttribute(\"style\",\"display:block;width:0;height:0;border:0;visibility:hidden\"),c.setAttribute(\"aria-hidden\",!0)),c.src=a+\"partytown-\"+(t?\"atomics.js?v=0.7.3\":\"sandbox-sw.html?\"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement(\"script\")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(\".\").map((function(e,n,i){p=p[i[n]]=n+1<i.length?\"push\"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),\"complete\"==e.readyState?u():(t.addEventListener(\"DOMContentLoaded\",u),t.addEventListener(\"load\",u))}(window,document,navigator,top,window.crossOriginIsolated);"}],"routeData":{"route":"/app","type":"page","pattern":"^\\/app\\/?$","segments":[[{"content":"app","dynamic":false,"spread":false}]],"params":[],"component":"src/pages/app/index.astro","pathname":"/app","_meta":{"trailingSlash":"ignore"}}},{"file":"","links":[],"scripts":[{"type":"external","value":"page.5a6f3db5.js"},{"stage":"head-inline","children":"!(function(w,p,f,c){c=w[p]=Object.assign(w[p]||{},{\"lib\":\"/~partytown/\",\"debug\":false});c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.7.3 - MIT builder.io */\n!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,\"/\"==(a=(o.lib||\"/~partytown/\")+(o.debug?\"debug/\":\"\"))[0]&&(s=e.querySelectorAll('script[type=\"text/partytown\"]'),i!=t?i.dispatchEvent(new CustomEvent(\"pt1\",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener(\"pt0\",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||\"partytown-sw.js\"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener(\"statechange\",(function(t){\"activated\"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?\"script\":\"iframe\"),t||(c.setAttribute(\"style\",\"display:block;width:0;height:0;border:0;visibility:hidden\"),c.setAttribute(\"aria-hidden\",!0)),c.src=a+\"partytown-\"+(t?\"atomics.js?v=0.7.3\":\"sandbox-sw.html?\"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement(\"script\")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(\".\").map((function(e,n,i){p=p[i[n]]=n+1<i.length?\"push\"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),\"complete\"==e.readyState?u():(t.addEventListener(\"DOMContentLoaded\",u),t.addEventListener(\"load\",u))}(window,document,navigator,top,window.crossOriginIsolated);"}],"routeData":{"route":"/app/account","type":"page","pattern":"^\\/app\\/account\\/?$","segments":[[{"content":"app","dynamic":false,"spread":false}],[{"content":"account","dynamic":false,"spread":false}]],"params":[],"component":"src/pages/app/account.astro","pathname":"/app/account","_meta":{"trailingSlash":"ignore"}}},{"file":"","links":["assets/_...slug_.81b9a00c.css"],"scripts":[{"type":"external","value":"hoisted.f6ee2883.js"},{"type":"external","value":"page.5a6f3db5.js"},{"stage":"head-inline","children":"!(function(w,p,f,c){c=w[p]=Object.assign(w[p]||{},{\"lib\":\"/~partytown/\",\"debug\":false});c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.7.3 - MIT builder.io */\n!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,\"/\"==(a=(o.lib||\"/~partytown/\")+(o.debug?\"debug/\":\"\"))[0]&&(s=e.querySelectorAll('script[type=\"text/partytown\"]'),i!=t?i.dispatchEvent(new CustomEvent(\"pt1\",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener(\"pt0\",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||\"partytown-sw.js\"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener(\"statechange\",(function(t){\"activated\"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?\"script\":\"iframe\"),t||(c.setAttribute(\"style\",\"display:block;width:0;height:0;border:0;visibility:hidden\"),c.setAttribute(\"aria-hidden\",!0)),c.src=a+\"partytown-\"+(t?\"atomics.js?v=0.7.3\":\"sandbox-sw.html?\"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement(\"script\")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(\".\").map((function(e,n,i){p=p[i[n]]=n+1<i.length?\"push\"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),\"complete\"==e.readyState?u():(t.addEventListener(\"DOMContentLoaded\",u),t.addEventListener(\"load\",u))}(window,document,navigator,top,window.crossOriginIsolated);"}],"routeData":{"route":"/[...slug]","type":"page","pattern":"^(?:\\/(.*?))?\\/?$","segments":[[{"content":"...slug","dynamic":true,"spread":true}]],"params":["...slug"],"component":"src/pages/[...slug].astro","_meta":{"trailingSlash":"ignore"}}}],"site":"https://ecom2-002.web.app/","base":"/","markdown":{"drafts":false,"syntaxHighlight":"shiki","shikiConfig":{"langs":[],"theme":"github-dark","wrap":false},"remarkPlugins":[],"rehypePlugins":[],"remarkRehype":{},"extendDefaultPlugins":false,"isAstroFlavoredMd":false,"isExperimentalContentCollections":false,"contentDir":"file:///home/leo/code/ecomplus/cloud-commerce/packages/storefront/src/content/"},"pageMap":null,"renderers":[],"entryModules":{"\u0000@astrojs-ssr-virtual-entry":"entry.mjs","@@sf/components/Prices.vue":"Prices.2ada125b.js","@@sf/components/ProductCard.vue":"ProductCard.e5bdea60.js","@astrojs/vue/client.js":"client.4d2b3a73.js","/astro/hoisted.js?q=0":"hoisted.f6ee2883.js","astro:scripts/page.js":"page.5a6f3db5.js","@@components/header/HeaderButtons.vue":"HeaderButtons.6f668467.js","/home/leo/code/ecomplus/cloud-commerce/packages/storefront/src/lib/components/LoginForm.vue":"chunks/LoginForm.1ba3ad0d.js","/home/leo/code/ecomplus/cloud-commerce/node_modules/workbox-window/build/workbox-window.prod.es5.mjs":"chunks/workbox-window.prod.es5.10f2e5ac.js","astro:scripts/before-hydration.js":""},"assets":["/assets/index.e6a09532.css","/assets/server.4d9646d8.css","/assets/_...slug_.81b9a00c.css","/manifest.webmanifest","/registerSW.js","/HeaderButtons.6f668467.js","/Prices.2ada125b.js","/ProductCard.e5bdea60.js","/client.4d2b3a73.js","/hoisted.f6ee2883.js","/page.5a6f3db5.js","/robots.txt","/sw.js","/workbox-abdc68aa.js","/admin/config.json","/assets/cms-preview.css","/assets/cms.css","/assets/cvv.png","/assets/img-placeholder.png","/assets/payments.png","/assets/ssl-safe.png","/chunks/HeaderButtons.cfa275db.js","/chunks/LoginForm.1ba3ad0d.js","/chunks/Prices.vue_vue_type_script_setup_true_lang.9a6ab0d6.js","/chunks/_plugin-vue_export-helper.0d33cd48.js","/chunks/ecom-utils.b0a26608.js","/chunks/preload-helper.1de719f8.js","/chunks/price.ecf7fed4.js","/chunks/runtime-core.esm-bundler.45ba83fa.js","/chunks/session-utm.2de8b604.js","/chunks/workbox-window.prod.es5.10f2e5ac.js","/img/icon.png","/img/large-icon.png","/img/uploads/banner1.png","/img/uploads/banner2.png","/img/uploads/banner2.webp","/img/uploads/favicon.png","/img/uploads/headless.png","/img/uploads/headphone.png","/img/uploads/headphone.webp","/img/uploads/icon.png","/img/uploads/large-icon.png","/img/uploads/logo.png","/img/uploads/logo.webp","/img/uploads/og-image.png","/img/uploads/passion.png","/img/uploads/passion.webp","/img/uploads/pwa-reliable.png","/img/uploads/rect8589.png","/img/uploads/rect859.png","/img/uploads/rect89.png","/img/uploads/rect89.webp","/img/uploads/ssl-safe.png","/assets/icons/bootstrap-icons/font/storefront-icons.woff2","/assets/icons/feather-icons/font/storefront-icons.woff2","/assets/icons/font-awesome/font/storefront-icons.woff2","/assets/icons/line-awesome/font/storefront-icons.woff2","/assets/icons/tabler-icons/font/storefront-icons.woff2","/page.5a6f3db5.js","/~partytown/partytown-atomics.js","/~partytown/partytown-media.js","/~partytown/partytown-sw.js","/~partytown/partytown.js"]}), {
13129
13141
  pageMap: pageMap,
13130
13142
  renderers: renderers
13131
13143
  });