Skip to content

Commit

Permalink
Add icon integration to astro config
Browse files Browse the repository at this point in the history
  • Loading branch information
Ticolyle committed Jan 10, 2024
1 parent 6f002fa commit b9ee376
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion astro.config.mjs
Expand Up @@ -2,11 +2,12 @@ import { defineConfig } from 'astro/config'
import mdx from '@astrojs/mdx'
import tailwind from '@astrojs/tailwind'
import compress from 'astro-compress'
import icon from "astro-icon"

// https://astro.build/config
export default defineConfig({
compressHTML: true,
integrations: [mdx(), tailwind({
integrations: [mdx(), icon(), tailwind({
applyBaseStyles: false,
}), compress()],
})

0 comments on commit b9ee376

Please sign in to comment.