-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.ts
43 lines (42 loc) · 965 Bytes
/
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 type { defineConfig } from "astro/config";
export default (await import("astro/config")).defineConfig({
srcDir: "./Source",
publicDir: "./Public",
outDir: "./Target",
// TODO Place your site URL here
// site: "",
compressHTML: true,
prefetch: true,
server: {
port: 9999,
},
build: {
concurrency: 9999,
},
integrations: [
// @ts-ignore
import.meta.env.MODE === "production"
? (await import("astrojs-service-worker")).default()
: null,
(await import("@astrojs/sitemap")).default(),
(await import("@playform/inline")).default({ Logger: 1 }),
(await import("@playform/format")).default({ Logger: 1 }),
(await import("@playform/compress")).default({ Logger: 1 }),
],
experimental: {
clientPrerender: true,
contentIntellisense: true,
},
vite: {
build: {
sourcemap: true,
},
resolve: {
preserveSymlinks: true,
},
css: {
devSourcemap: true,
transformer: "postcss",
},
},
}) as typeof defineConfig;