mirror of
https://github.com/xHyroM/website.git
synced 2024-11-10 01:38:05 +01:00
21 lines
536 B
JavaScript
21 lines
536 B
JavaScript
|
import { defineConfig } from 'astro/config';
|
||
|
|
||
|
// https://astro.build/config
|
||
|
import tailwind from "@astrojs/tailwind";
|
||
|
|
||
|
// https://astro.build/config
|
||
|
import image from "@astrojs/image";
|
||
|
|
||
|
// https://astro.build/config
|
||
|
import sitemap from "@astrojs/sitemap";
|
||
|
|
||
|
// https://astro.build/config
|
||
|
import compress from "astro-compress";
|
||
|
|
||
|
// https://astro.build/config
|
||
|
import prefetch from "@astrojs/prefetch";
|
||
|
|
||
|
// https://astro.build/config
|
||
|
export default defineConfig({
|
||
|
integrations: [tailwind(), image(), sitemap(), compress(), prefetch()]
|
||
|
});
|