-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
38 lines (36 loc) · 975 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
import { defineConfig, passthroughImageService } from 'astro/config';
import AstroPWA from '@vite-pwa/astro';
import robotsTxt from 'astro-robots-txt';
import sitemap from '@astrojs/sitemap';
import webmanifest from 'astro-webmanifest';
// https://astro.build/config
export default defineConfig({
site: 'https://dvgamerr.app',
image: {
service: passthroughImageService(),
},
integrations: [
AstroPWA(),
robotsTxt(),
sitemap({
i18n: {
defaultLocale: 'en',
locales: {
en: 'en-US',
th: 'th-TH',
},
},
}),
webmanifest({
name: 'Kananek Thongkam | Software Engineer',
icon: 'public/icon.webp', // source for favicon & icons
short_name: 'dvgamerr',
description:
"Hey there, My name is Kananek T. and I'm a Software Engineer.",
start_url: '/',
theme_color: '#3068d9',
background_color: '#f8f8f8',
display: 'standalone',
}),
],
});