Updates and more

This commit is contained in:
2023-10-12 21:02:57 +02:00
parent f10d4c17d6
commit c5164f2bd3
29 changed files with 803 additions and 147 deletions

View File

@ -1,19 +1,14 @@
import i18n from "astro-i18n"
import { defineConfig, sharpImageService } from 'astro/config';
import svelte from "@astrojs/svelte";
import tailwind from "@astrojs/tailwind";
import prefetch from "@astrojs/prefetch";
// https://astro.build/config
export default defineConfig({
output: "static",
image: {
service: sharpImageService(),
},
integrations: [i18n(), svelte(), tailwind(), prefetch({
selector: "a"
})],
integrations: [svelte(), tailwind()],
vite: {
}