mirror of
https://codeberg.org/theamazing0/portfolio.git
synced 2025-10-29 18:02:18 -04:00
28 lines
550 B
JavaScript
28 lines
550 B
JavaScript
// @ts-check
|
|
import { defineConfig } from "astro/config";
|
|
|
|
import icon from "astro-icon";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: "https://samvid.dev",
|
|
integrations: [
|
|
icon({
|
|
include: {
|
|
"simple-icons": [
|
|
"signal",
|
|
"matrix",
|
|
"git",
|
|
"mastodon",
|
|
"github",
|
|
"gitlab",
|
|
"codeberg",
|
|
"devpost",
|
|
"linkedin",
|
|
"hackclub",
|
|
],
|
|
lucide: ["mail", "globe", "rss", "calendar"],
|
|
},
|
|
}),
|
|
],
|
|
});
|