-
Notifications
You must be signed in to change notification settings - Fork 0
/
histoire.config.ts
54 lines (53 loc) · 1.04 KB
/
histoire.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
import { defineConfig } from 'histoire';
import { HstVue } from '@histoire/plugin-vue';
export default defineConfig({
setupFile: '/src/histoire.setup.ts',
plugins: [HstVue()],
viteNodeInlineDeps: [/@aws-sdk/, /@inertiajs/],
tree: {
groups: [
{
id: 'top',
title: '', // No toggle
},
{
id: 'widgets',
title: 'Field Widgets',
},
{
id: 'chapter',
title: 'Chapter Index',
},
{
id: 'draft',
title: 'Drafts',
},
{
id: 'pages',
title: 'Pages',
},
{
id: 'interface',
title: 'Interface',
},
{
id: 'users',
title: 'Users',
},
{
id: 'shared',
title: 'Shared Widgets',
},
],
},
theme: {
title: 'Story CMS',
// logo: {
// square: "./img/square.png",
// light: "./img/light.png",
// dark: "./img/dark.png",
// },
// logoHref: "https://acme.com",
// favicon: "./favicon.ico",
},
});