blob: fbcb3c15e1b3ab653497e8c62db353824777a43a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import {defineConfig, passthroughImageService} from 'astro/config';
import icon from "astro-icon";
import vue from '@astrojs/vue';
import vercel from "@astrojs/vercel/serverless";
// https://astro.build/config
export default defineConfig({
integrations: [icon(), vue()],
output: "server",
adapter: vercel(),
image: {
service: passthroughImageService(),
}
});
|