jaster.xyz/astro.config.mjs

16 lines
450 B
JavaScript

import { defineConfig } from "astro/config";
import icon from "astro-icon";
// https://astro.build/config
export default defineConfig({
site: "https://jaster.xyz",
integrations: [
icon({
include: {
// Include only three `mdi` icons in the bundle
// Otherwise, Astro Icons could include every single icon in the mdi package and result in a huge bundle size
mdi: ["github", "linkedin"],
},
}),
],
});