-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathastro.config.mjs
More file actions
19 lines (18 loc) · 1017 Bytes
/
astro.config.mjs
File metadata and controls
19 lines (18 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// @ts-check
import { defineConfig } from 'astro/config';
import icon from "astro-icon";
import tailwindcss from "@tailwindcss/vite";
// https://astro.build/config
export default defineConfig({
vite: {
plugins: [tailwindcss()],
},
site: "https://store.wiilink.ca",
integrations: [icon({
iconDir: "public/icons",
include: {
"lucide": ["info", "film", "house", "mail-open", "newspaper", "book", "arrow-right", "circle-alert", "server", "package", "package-open", "users", "tag", "id-card", "stamp", "bookmark", "disc", "shield", "feather", "moon", "sun", "arrow-up-right", "menu", "earth", "shopping-basket", "smile", "zap", "chart-pie", "video", "mic", "tv", "circle", "truck", "camera", "bot", "leaf", "chevron-down", "presentation", "umbrella", "mail", "rss", "chevron-left", "chevron-right", "brush", "refresh-cw", "shopping-bag", "shopping-cart", "home", "box"],
"simple-icons": ["twitter", "bluesky", "instagram", "youtube"]
}
})],
});