website/astro.config.mjs
Max Richter 613ab7aef9
All checks were successful
Deploy to SFTP Server / build (push) Successful in 23m37s
fix: some astro type errors
2024-04-06 18:23:39 +02:00

58 lines
1.2 KiB
JavaScript

import { defineConfig } from 'astro/config';
import { i18n, filterSitemapByDefaultLocale } from "astro-i18n-aut/integration";
import sitemap from "@astrojs/sitemap";
import Icons from 'unplugin-icons/vite'
import mdx from '@astrojs/mdx';
import glsl from 'vite-plugin-glsl';
import remarkToc from 'remark-toc'
import svelte from "@astrojs/svelte";
import UnoCSS from 'unocss/astro'
const defaultLocale = "de";
const locales = {
en: "en", // the `defaultLocale` value must present in `locales` keys
de: "de",
};
// https://astro.build/config
export default defineConfig({
site: "https://max-richter.dev",
trailingSlash: "never",
prefetch: true,
build: {
format: "file",
},
vite: {
plugins: [
glsl(),
Icons({
compiler: 'svelte',
}),
],
},
integrations: [
mdx({
remarkPlugins: [
remarkToc
]
}),
svelte(),
UnoCSS({
injectReset: true
}),
i18n({
exclude: ["pages/**/*.json.ts", "pages/api/**/*",],
locales,
defaultLocale,
}),
sitemap({
i18n: {
locales,
defaultLocale,
},
filter: filterSitemapByDefaultLocale({ defaultLocale }),
}),
]
});