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.

14 lines
331 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}),
experimental: {
assets: true,
},
image: {
service: testImageService(),
},
});