-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathastro.config.ts
41 lines (40 loc) · 892 Bytes
/
astro.config.ts
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
import mdx from '@astrojs/mdx';
import partytown from '@astrojs/partytown';
import sitemap from '@astrojs/sitemap';
import tailwind from '@astrojs/tailwind';
import { defineConfig } from 'astro/config';
import robotsTxt from 'astro-robots-txt';
// https://astro.build/config
export default defineConfig({
site: 'https://www.barrenechea.cl/',
output: 'static',
markdown: {
shikiConfig: {
theme: 'github-dark-dimmed',
},
},
build: {
format: 'directory',
},
integrations: [
mdx(),
partytown({
config: {
forward: ['dataLayer.push'],
},
}),
sitemap(),
tailwind({ applyBaseStyles: false }),
robotsTxt(),
],
// i18n: {
// defaultLocale: "es",
// locales: ["en", "es"],
// routing: {
// prefixDefaultLocale: true
// }
// }
// experimental: {
// contentCollectionCache: true,
// },
});