Skip to content

Commit

Permalink
Astro config uses tabs now.
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
Southpaw1496 committed Sep 21, 2024
1 parent a145d89 commit 60370fc
Showing 1 changed file with 22 additions and 23 deletions.
45 changes: 22 additions & 23 deletions astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,25 @@ import searchIndex from "./src/integration/search-index";

// https://astro.build/config
export default defineConfig({
site: "https://quiltmc.org/",
integrations: [
mdx(),
astroI18next(),
sitemap(),
purgecss({ safelist: ["has-background-info", "has-background-link"] }),
compress({ SVG: false, }),
searchIndex(),
icon()
],
markdown: {
syntaxHighlight: "prism",
rehypePlugins: [[rehypeAutolinkHeadings, {
content: fromHtml('<span class="header-anchor-container icon pl-3"><i class="header-anchor fas fa-lg fa-link has-text-link is-size-5"></i></span>'),
behavior: "append"
}]]
},
vite: {
build: {
assetsInlineLimit: 0
}
}
});
site: "https://quiltmc.org/",
integrations: [
mdx(),
astroI18next(),
sitemap(),
purgecss({ safelist: ["has-background-info", "has-background-link"] }),
compress({ SVG: false, }),
searchIndex(),
icon()
],
markdown: {
syntaxHighlight: "prism",
rehypePlugins: [[rehypeAutolinkHeadings, {
behavior: "append"
}]]
},
vite: {
build: {
assetsInlineLimit: 0
}
}
});

0 comments on commit 60370fc

Please sign in to comment.