-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
44 lines (38 loc) · 939 Bytes
/
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
// @ts-check
import { defineConfig, envField } from "astro/config";
import react from "@astrojs/react";
import vercel from "@astrojs/vercel";
import tailwindcss from "@tailwindcss/vite";
// https://astro.build/config
export default defineConfig({
integrations: [react()],
adapter: vercel({
isr: {
// caches all pages on first request and saves for 1 day
expiration: 60 * 60 * 24,
},
}),
vite: {
plugins: [tailwindcss()],
},
env: {
schema: {
OPENSTATES_API_KEY: envField.string({
context: "server",
access: "secret",
}),
GOOGLE_CIVIC_API_KEY: envField.string({
context: "server",
access: "secret",
}),
PUBLIC_MAPBOX_TOKEN: envField.string({
context: "client",
access: "public",
}),
PUBLIC_LOCATIONIQ_TOKEN: envField.string({
context: "client",
access: "public",
}),
},
},
});