2023-04-13 09:54:40 +00:00
|
|
|
import mdx from '@astrojs/mdx';
|
2023-06-13 14:47:24 +00:00
|
|
|
import { testImageService } from '../../../../../astro/test/test-image-service.js';
|
2023-04-13 09:54:40 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
integrations: [mdx()],
|
|
|
|
experimental: {
|
2023-06-13 14:47:24 +00:00
|
|
|
assets: true,
|
|
|
|
},
|
|
|
|
image: {
|
|
|
|
service: testImageService(),
|
|
|
|
},
|
2023-04-13 09:54:40 +00:00
|
|
|
}
|