7ea32c7fbf
* feat: pass our domains and remote config to Vercel'S * chore: changeset * test: update test to test for this * docs: update README
15 lines
412 B
JavaScript
15 lines
412 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}),
|
|
image: {
|
|
service: testImageService(),
|
|
domains: ['astro.build'],
|
|
remotePatterns: [{
|
|
protocol: 'https',
|
|
hostname: '**.amazonaws.com',
|
|
}],
|
|
},
|
|
});
|