-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.ts
55 lines (51 loc) · 1.09 KB
/
vite.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
45
46
47
48
49
50
51
52
53
54
55
import { defaultTheme } from "@sveltepress/theme-default"
import { sveltepress } from "@sveltepress/vite"
import { defineConfig } from "vite"
import { sidebar } from "./config/sidebar"
const config = defineConfig({
plugins: [
sveltepress({
theme: defaultTheme({
navbar: [
{
title: "Docs",
to: "/docs/intro/",
},
],
sidebar: {
"/docs/": [
{
title: "Guide",
collapsible: true,
items: [
{
title: "Get Started",
to: "/docs/intro/",
},
{
title: "Contributing",
to: "/docs/contributing/",
},
],
},
...sidebar,
],
},
github: "https://github.com/svelte-u/docs",
logo: "/logo.png",
discord: "https://discord.gg/nbkcHgDXPc",
ga: "G-0W8V2FLKY8",
docsearch: {
appId: "AFZNEE7ZW9",
apiKey: "c4edfd7a902f53dbd7f863055e900e69",
indexName: "svelte-u",
},
}),
siteConfig: {
title: "Svelte Utility",
description: "A collection of useful utility functions for Svelte",
},
}),
],
})
export default config