1
0
Fork 0
winter-software.com/astro.config.mjs

14 lines
296 B
JavaScript
Raw Normal View History

2024-06-02 14:52:07 +00:00
import { defineConfig, squooshImageService } from 'astro/config';
2024-06-02 11:21:33 +00:00
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
publicDir: "static",
outDir: "public",
2024-06-02 14:52:07 +00:00
integrations: [tailwind()],
image:{
service: squooshImageService()
}
2024-06-02 11:21:33 +00:00
});