mirror of
https://github.com/withastro/astro.git
synced 2025-02-17 22:44:24 -05:00
* fix: conditionally import image style * Use wrapper component for conditional style import * changeset * Add tests * Fix tests * Update markdoc tests * Lint
13 lines
310 B
TypeScript
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,
|
|
}
|
|
})
|