2022-12-23 14:08:00 +01:00
|
|
|
import { defineConfig } from "astro/config";
|
2022-12-04 14:46:22 +01:00
|
|
|
|
|
|
|
// 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({
|
2022-12-23 14:08:00 +01:00
|
|
|
site: "https://stargazers.club", //prepisat uwu
|
|
|
|
integrations: [tailwind(), image(), sitemap(), compress(), prefetch()],
|
|
|
|
});
|