generated from onwidget/astrowind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
45 lines (39 loc) · 1.01 KB
/
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
45
import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
import alpinejs from "@astrojs/alpinejs";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
import preact from "@astrojs/preact";
import react from "@astrojs/react";
// https://astro.build/config
// https://astro.build/config
// https://astro.build/config
import partytown from "@astrojs/partytown";
// https://astro.build/config
export default defineConfig({
trailingSlash: 'always',
site: 'https://datanautes.com',
integrations: [tailwind(), alpinejs(), mdx(), sitemap(), preact(), react(), partytown()]
});
/*{
i18n: {
defaultLocale: 'en',
locales: {
en: 'en-US',
de: 'de-DE',
cs: 'cs-CZ',
es: 'es-ES',
pt: 'pt-BR',
fr: 'fr-FR',
sv: 'sv-SE',
tr: 'tr-TR',
'zh-cn': 'zh-cn',
da: 'da-DK',
it: 'it-IT',
ja: 'ja-JP',
ko: 'ko-KR',
no: 'no-NO',
ru: 'ru-RU',
},
}
}*/