19 lines
465 B
JavaScript
19 lines
465 B
JavaScript
// @ts-check
|
|
import { defineConfig } from "astro/config";
|
|
|
|
import aiRobotsTxt from "astro-ai-robots-txt";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
image: {
|
|
// Used for all Markdown images; not configurable per-image
|
|
// Used for all `<Image />` and `<Picture />` components unless overridden with a prop
|
|
experimentalLayout: "responsive",
|
|
},
|
|
|
|
experimental: {
|
|
responsiveImages: true,
|
|
},
|
|
|
|
integrations: [aiRobotsTxt()],
|
|
}); |