-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathastro.config.mjs
47 lines (45 loc) · 1010 Bytes
/
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
47
import { defineConfig } from 'astro/config'
import starlight from '@astrojs/starlight'
import liveCode from './src/lib/index.js'
import path from 'path'
import { fileURLToPath } from 'url'
import svelte from '@astrojs/svelte'
import preact from '@astrojs/preact'
import vue from '@astrojs/vue'
const __dirname = fileURLToPath(new URL('.', import.meta.url))
// https://astro.build/config
export default defineConfig({
vite: {
resolve: {
alias: [
{
find: 'astro-live-code',
replacement: '/src/lib',
},
],
},
},
integrations: [
starlight({
title: 'Astro Live Code',
social: {
github: 'https://github.com/mattjennings/astro-live-code',
},
tableOfContents: {
minHeadingLevel: 1,
},
sidebar: [
{
label: 'Guides',
autogenerate: {
directory: 'guides',
},
},
],
}),
liveCode({}),
svelte(),
preact(),
vue(),
],
})