12 lines
242 B
TypeScript
12 lines
242 B
TypeScript
import mdx from '@astrojs/mdx';
|
|
import { testImageService } from '../../../../../astro/test/test-image-service.js';
|
|
|
|
export default {
|
|
integrations: [mdx()],
|
|
experimental: {
|
|
assets: true,
|
|
},
|
|
image: {
|
|
service: testImageService(),
|
|
},
|
|
}
|