13 lines
331 B
JavaScript
13 lines
331 B
JavaScript
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(),
|
|
},
|
|
});
|