-
Notifications
You must be signed in to change notification settings - Fork 1
/
astro.config.mjs
35 lines (34 loc) · 913 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
import { defineConfig, squooshImageService } from 'astro/config';
import tailwind from "@astrojs/tailwind";
import sitemap from '@astrojs/sitemap';
import robotsTxt from "astro-robots-txt";
import favicons from "astro-favicons";
export default defineConfig({
site: 'https://garpunkal.dev',
prefetch: true,
image: {
service: squooshImageService(),
domains: [
"res.cloudinary.com",
"cloud.squidex.io"
],
},
integrations: [
tailwind(),
sitemap(),
robotsTxt({
sitemap: ['https://garpunkal.dev/sitemap-index.xml']
}),
favicons({
masterPicture: "public/favicon.png",
emitAssets: true,
appName: "garpunkal.dev",
appShortName: "garpunkal.dev",
appDescription: "garpunkal.dev",
lang: "en-GB",
background: "#077da0",
theme_color: "#077da0",
faviconsDarkMode: false,
manifestMaskable: true
})]
});