astro.config.ts 205 B

123456789
  1. import mdx from '@astrojs/mdx';
  2. import { testImageService } from '../../../../../astro/test/test-image-service.js';
  3. export default {
  4. integrations: [mdx()],
  5. image: {
  6. service: testImageService(),
  7. },
  8. }