mirror of
https://codeberg.org/theamazing0/portfolio.git
synced 2025-10-30 02:12:19 -04:00
31 lines
No EOL
573 B
JavaScript
31 lines
No EOL
573 B
JavaScript
// @ts-check
|
|
import { defineConfig } from "astro/config";
|
|
|
|
import icon from "astro-icon";
|
|
|
|
import cloudflare from "@astrojs/cloudflare";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
icon({
|
|
include: {
|
|
"simple-icons": [
|
|
"signal",
|
|
"matrix",
|
|
"git",
|
|
"mastodon",
|
|
"github",
|
|
"gitlab",
|
|
"codeberg",
|
|
"devpost",
|
|
"linkedin",
|
|
"hackclub",
|
|
],
|
|
lucide: ["mail", "globe"],
|
|
},
|
|
}),
|
|
],
|
|
|
|
adapter: cloudflare(),
|
|
}); |