forked from taibeled/JetLagHideAndSeek
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
52 lines (51 loc) · 1.75 KB
/
astro.config.mjs
File metadata and controls
52 lines (51 loc) · 1.75 KB
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
// @ts-check
import partytown from "@astrojs/partytown";
import react from "@astrojs/react";
import tailwind from "@astrojs/tailwind";
import AstroPWA from "@vite-pwa/astro";
import { defineConfig } from "astro/config";
// https://astro.build/config
export default defineConfig({
integrations: [
react(),
tailwind({
applyBaseStyles: false,
}),
partytown({
config: {
forward: ["dataLayer.push"],
},
}),
AstroPWA({
manifest: {
name: "Jet Lag Hide and Seek Map Generator",
short_name: "Map Generator",
description:
"Automatically generate maps for Jet Lag The Game: Hide and Seek with ease! Simply name the questions and watch the map eliminate hundreds of possibilities in seconds.",
icons: [
{
src: "https://taibeled.github.io/JetLagHideAndSeek/JLIcon.png",
sizes: "1080x1080",
type: "image/png",
},
{
src: "https://taibeled.github.io/JetLagHideAndSeek/android-chrome-192x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "https://taibeled.github.io/JetLagHideAndSeek/android-chrome-512x512.png",
sizes: "512x512",
type: "image/png",
},
],
theme_color: "#1F2F3F",
},
}),
],
devToolbar: {
enabled: false,
},
site: "https://taibeled.github.io",
base: "JetLagHideAndSeek",
});