aboutsummaryrefslogtreecommitdiff
path: root/astro.config.mjs
blob: d2dbc06a7da9b52bf0b1e9dada33c13cdbb9faf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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({
  site: 'https://alee14.me',
  integrations: [icon(), vue()],
  output: "server",
  adapter: vercel(),
  image: {
    service: passthroughImageService(),
  }
});