-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ts
61 lines (60 loc) · 1.88 KB
/
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
56
57
58
59
60
61
import { defineConfigWithTheme } from "vitepress";
export default defineConfigWithTheme({
lang: "en-US",
title: "Filesrocket",
description: "Manage your files with any Cloud Storage Service",
srcDir: "docs",
outDir: "dist",
head: [
['link', { rel: "icon", type: "image/png", sizes: "16x16", href: "/icon.png"}]
],
themeConfig: {
siteTitle: 'Filesrocket',
logo: "/icon.png",
nav: [
{ text: 'Guide', link: '/introduction/what-is-filesrocket' },
{ text: 'Changelog', link: 'https://github.com/Filesrocket/filesrocket/blob/master/CHANGELOG.md' }
],
socialLinks: [
{ icon: 'github', link: 'https://github.com/filesrocket' }
],
sidebar: [
{
text: 'Introduction',
items: [
{ text: 'What is Filesrocket?', link: '/introduction/what-is-filesrocket' },
{ text: 'Getting Started', link: '/introduction/getting-started' }
]
},
{
text: 'Overview',
items: [
{ text: 'Filesrocket', link: '/overview/filesrocket' },
{ text: 'Controllers', link: '/overview/controllers' },
{ text: "Services", link: '/overview/services' },
{ text: "Examples", link: '/overview/examples' },
{ text: "Congratulations", link: '/overview/congratulations' }
]
},
{
text: 'Services',
items: [
{ text: 'Local', link: '/services/local' },
{ text: 'Cloudinary', link: '/services/cloudinary' },
{ text: 'Amazon S3', link: '/services/amazon-s3' }
]
},
{
text: 'Extra topics',
items: [
{ text: 'Schema', link: '/extras/schema' },
{ text: 'Pagination', link: '/extras/pagination' }
]
}
],
footer: {
message: "Released under the MIT License.",
copyright: `Copyright © ${new Date().getFullYear()} Ivan Zaldivar`
}
}
});