mirror of
https://codeberg.org/JasterV/jaster.xyz.git
synced 2026-04-26 18:10:01 +00:00
16 lines
450 B
JavaScript
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"],
|
|
},
|
|
}),
|
|
],
|
|
});
|