diff --git a/eleventy.config.js b/eleventy.config.js index d1629bf..61369c4 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -5,6 +5,9 @@ export default function (eleventyConfig) { host: "0.0.0.0", }); + // Copia los assets estáticos (logotipo, isotipo, favicon) a dist/assets. + eleventyConfig.addPassthroughCopy("src/assets"); + eleventyConfig.addFilter("formatPrice", (value, currency) => { const locale = currency === "ars" ? "es-AR" : "en-US"; return new Intl.NumberFormat(locale).format(value); diff --git a/src/_includes/layouts/base.njk b/src/_includes/layouts/base.njk index 59bdd6a..65b4e70 100644 --- a/src/_includes/layouts/base.njk +++ b/src/_includes/layouts/base.njk @@ -5,6 +5,9 @@