astro/packages/integrations/mdx/test/fixtures/mdx-images/astro.config.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
205 B
TypeScript
Raw Normal View History

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