diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-04-10 21:33:44 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-04-10 21:33:44 +0200 |
| commit | 3caee506c961ae0e78503164ed6a0f81db3c8c32 (patch) | |
| tree | 91bacabb0fa2b12f0e041f26959472381f3d6a63 /astro.config.mjs | |
| parent | f8ea986c8d26a519ba30dfa97095487f85a09237 (diff) | |
Add husky and update dependencies
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index 12285a1..06a3863 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -4,6 +4,8 @@ import { defineConfig } from 'astro/config'; import mdx from '@astrojs/mdx'; import { DEFAULT_LANGUAGE, LANGUAGE_CODES } from './src/i18n'; +import icon from 'astro-icon'; + export default defineConfig({ compressHTML: true, site: "https://www.costas.dev", @@ -16,13 +18,10 @@ export default defineConfig({ redirectToDefaultLocale: true } }, - integrations: [ - sitemap({ - priority: 0.5, - changefreq: 'weekly' - }), - mdx() - ], + integrations: [sitemap({ + priority: 0.5, + changefreq: 'weekly' + }), mdx(), icon()], build: { assets: 'assets', inlineStylesheets: 'never', |
