-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathastro.config.ts
43 lines (41 loc) · 1.01 KB
/
astro.config.ts
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
import { defineConfig } from "astro/config";
import sitemap from "@astrojs/sitemap";
import compress from "astro-compress";
import prefetch from "@astrojs/prefetch";
import { loadEnv } from "vite";
const { SITE_URL, BASE_URL } = loadEnv(import.meta.env.MODE, process.cwd(), "");
// https://astro.build/config
import image from "@astrojs/image";
// https://astro.build/config
export default defineConfig({
site: SITE_URL,
base: BASE_URL,
markdown: {
shikiConfig: {
theme: "dracula",
wrap: true,
},
},
integrations: [
sitemap(),
image({
serviceEntryPoint: "@astrojs/image/sharp",
}),
compress({
css: false,
html: {
removeComments: true,
removeAttributeQuotes: false,
},
img: false,
js: false,
svg: true,
}),
prefetch(),
],
vite: {
build: {
assetsInlineLimit: 0,
},
},
});