14 lines
296 B
JavaScript
14 lines
296 B
JavaScript
import { defineConfig, squooshImageService } from 'astro/config';
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
publicDir: "static",
|
|
outDir: "public",
|
|
|
|
integrations: [tailwind()],
|
|
image:{
|
|
service: squooshImageService()
|
|
}
|
|
}); |