mirror of
https://github.com/mikkelsvartveit/astro-personal-website.git
synced 2025-12-22 11:12:38 +00:00
14 lines
356 B
JavaScript
14 lines
356 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import tailwind from "@astrojs/tailwind";
|
|
import svelte from "@astrojs/svelte";
|
|
import cloudflare from "@astrojs/cloudflare";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [tailwind(), svelte()],
|
|
output: "hybrid",
|
|
adapter: cloudflare({
|
|
imageService: "compile",
|
|
}),
|
|
});
|
|
|