mirror of
https://github.com/xHyroM/website.git
synced 2024-11-14 03:28:07 +01:00
21 lines
No EOL
536 B
JavaScript
21 lines
No EOL
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()]
|
|
}); |