-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.ts
44 lines (43 loc) · 1.02 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
44
import type { defineConfig } from "astro/config";
export default (await import("astro/config")).defineConfig({
srcDir: "./Source",
publicDir: "./Public",
outDir: "./Target",
site: "HTTPS://playform-deno-deploy.deno.dev",
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 }),
],
// output: "server",
// adapter: (await import("@astrojs/deno")).default(),
experimental: {
clientPrerender: true,
contentIntellisense: true,
},
vite: {
build: {
sourcemap: true,
},
resolve: {
preserveSymlinks: true,
},
css: {
devSourcemap: true,
transformer: "postcss",
},
},
}) as typeof defineConfig;