-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.ts
44 lines (40 loc) · 1.04 KB
/
astro.config.ts
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
import { defineConfig } from 'astro/config';
import expressiveCode from 'astro-expressive-code';
import mdx from '@astrojs/mdx';
import sitemap from '@astrojs/sitemap';
import dashboard from './package/src';
import node from '@astrojs/node';
import { DashboardDark } from './src/ec-theme';
import vercel from '@astrojs/vercel';
// import pagefind from '@astrojs/pagefind';
// https://astro.build/config
export default defineConfig({
site: 'https://zemeriksdashboard.vercel.app',
output: 'static',
integrations: [
// pagefind(),
expressiveCode({
themes: [DashboardDark],
}),
mdx(),
sitemap(),
dashboard({
name: "Dashboard",
openGraph: {
home: {
title: 'Dashboard',
description: 'A Unified Digital Identity Hub'
},
blog: {
title: 'Blog',
description: 'News and updates of Hemang Yadav'
},
projects: {
title: 'Projects',
description: 'Projects by Hemang Yadav'
}
},
})
],
adapter: vercel()
});