15 lines
383 B
JavaScript
15 lines
383 B
JavaScript
// @ts-check
|
|
import { defineConfig } from "astro/config";
|
|
|
|
// 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,
|
|
},
|
|
});
|