blob: 94cc00f7bd8615582246766a371fce5b03727a2b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import netlify from '@astrojs/netlify';
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
output: 'server',
adapter: netlify({
edgeMiddleware: true,
}),
image: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com',
pathname: '/photo-1567674867291-b2595ac53ab4',
},
],
},
});
|