generated from zankhq/astro-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
65 lines (65 loc) · 1.82 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import { defineConfig } from "astro/config";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
import tailwind from "@astrojs/tailwind";
import alpinejs from "@astrojs/alpinejs";
import robotsTxt from 'astro-robots-txt';
import { i18n, filterSitemapByDefaultLocale } from "astro-i18n-aut/integration";
import { DEFAULT_LOCALE, LOCALES, SITE_URL } from "./src/consts";
// import node from "@astrojs/node"; .
import vercel from '@astrojs/vercel/serverless';
import vitePwa from "@vite-pwa/astro";
import compress from "astro-compress";
//import lighthouse from "astro-lighthouse"; .
import critters from "astro-critters";
import icon from "astro-icon";
const defaultLocale = DEFAULT_LOCALE;
const locales = LOCALES;
// https://astro.build/config
export default defineConfig({
site: SITE_URL,
trailingSlash: "always",
build: {
format: "directory",
minify: true,
esbuild: {
target: 'es5' // Transpile to ES5 for broader browser support
}
},
vite: {
logLevel: "error",
define: {
__DATE__: `'${new Date()}'`
}
},
redirects: {
"/en/": "/",
"/en/projects/": "/projects/",
"/en/about/": "/about/",
},
integrations: [mdx(), robotsTxt(), sitemap({
i18n: {
locales,
defaultLocale
},
filter: filterSitemapByDefaultLocale({
defaultLocale
})
}), tailwind({
applyBaseStyles: false
}), alpinejs(), i18n({
locales,
defaultLocale,
exclude: ["pages/api/**/*", "pages/rss.xml.ts", "pages/[locale]/rss.xml.ts"]
}), vitePwa(), compress(), critters(), icon()],
output: "server",
// vercel adapter for running the project in vercel
adapter: vercel({
imageService: true,
}),
// node adapter for running the project in a dedicated NodeJS server
// adapter: node({
// mode: "standalone",
// standalone: true
// }),
});