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
|
|
|
});
|