astro/packages/integrations/vercel/test/fixtures/image/astro.config.mjs

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

11 lines
294 B
JavaScript
Raw Normal View History

import vercel from '@astrojs/vercel/static';
import { defineConfig } from 'astro/config';
import { testImageService } from '../../../../../astro/test/test-image-service.js';
export default defineConfig({
adapter: vercel({imageService: true}),
image: {
service: testImageService(),
},
});