-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
55 lines (53 loc) · 1.38 KB
/
astro.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import { defineConfig } from "astro/config";
// integrations
import react from "@astrojs/react";
import sitemap from "@astrojs/sitemap";
import tailwind from "@astrojs/tailwind";
import icon from "astro-icon";
// https://astro.build/config
export default defineConfig({
site: "https://murtadha.site",
integrations: [
icon({
include: {
"line-md": [
"sunny-outline-to-moon-loop-transition",
"moon-filled-to-sunny-filled-loop-transition",
"close-to-menu-alt-transition",
"menu-to-close-alt-transition",
"home",
"chevron-small-double-right",
"chevron-small-double-left",
"rss",
],
mdi: ["twitter", "github", "linkedin", "email", "tailwind"],
"devicon-plain": [
"javascript",
"typescript",
"astro",
"java",
"ansible",
"bash",
"docker",
"fastapi",
"figma",
"jupyter-wordmark",
"python",
"githubactions",
"linux",
"terraform",
"notion",
"go",
],
"simple-icons": ["nushell"],
},
}),
sitemap(),
tailwind({
// disable injecting a basic `base.css` import on every page
// use a single global CSS file instead (for configuration)
applyBaseStyles: false,
}),
react(),
],
});