-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
46 lines (44 loc) · 1.2 KB
/
astro.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// @ts-check
import { defineConfig, squooshImageService } from 'astro/config';
import starlight from '@astrojs/starlight';
import Icons from "unplugin-icons/vite";
import tailwind from '@astrojs/tailwind';
import IconsResolver from "unplugin-icons/resolver";
import Components from "unplugin-vue-components/vite";
import vue from '@astrojs/vue';
// https://astro.build/config
export default defineConfig({
site: 'https://umbraco-astroboard.vercel.app',
// base: 'astroboard',
// outDir: 'docs',
image: {
service: squooshImageService()
},
vite: {
plugins: [
Icons({
autoInstall: true,
}),
],
},
integrations: [starlight({
title: 'Astroboard',
logo: {
light: '/public/images/logo.png',
dark: '/public/images/logo.png',
replacesTitle: false,
},
social: {
github: 'https://github.com/wpplumber/astroboard',
},
sidebar: [
{
label: 'Start here',
items: [
{ label: 'Getting Started', slug: 'getting-started' },
{ label: 'Manual Setup', slug: 'manual-setup' },
],
},
],
}), tailwind(), vue()],
});