0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-17 22:44:24 -05:00
astro/packages/integrations/mdx/test/fixtures/mdx-images/astro.config.ts
Matt Kane 44841fc281
fix: conditionally import image style (#12925)
* fix: conditionally import image style

* Use wrapper component for conditional style import

* changeset

* Add tests

* Fix tests

* Update markdoc tests

* Lint
2025-01-08 13:24:45 +00:00

13 lines
310 B
TypeScript

import mdx from '@astrojs/mdx';
import { testImageService } from '../../../../../astro/test/test-image-service.js';
import { defineConfig } from 'astro/config';
export default defineConfig({
integrations: [mdx()],
image: {
service: testImageService(),
},
experimental: {
responsiveImages: true,
}
})