-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathapp.config.ts
More file actions
90 lines (90 loc) · 2.11 KB
/
Copy pathapp.config.ts
File metadata and controls
90 lines (90 loc) · 2.11 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
export default defineAppConfig({
seo: {
title: "Meteor Design System",
description:
"Meteor is Shopware's open-source design system that drives our commerce solutions.",
},
navigation: {
// Scope the docs sidebar to the current top-level section only.
sub: "aside",
},
assistant: {
floatingInput: false,
explainWithAi: false,
},
header: {
title: "Meteor Design System",
logo: {
light: "/shopware-meteor-logo.svg",
dark: "/shopware-meteor-logo.svg",
alt: "Shopware Design",
class: "h-7",
favicon: "/shopware-signet.svg",
brandAssetsUrl: "https://brand.shopware.com",
},
},
toc: {
bottom: {
title: "Useful resources",
links: [
{
label: "Shopware docs",
to: "https://developer.shopware.com/",
target: "_blank",
},
{
label: "Admin SDK docs",
to: "https://developer.shopware.com/resources/admin-extension-sdk/",
target: "_blank",
},
{
label: "Brand guidelines",
to: "https://brand.shopware.com/",
target: "_blank",
},
],
},
},
github: {
url: "https://github.com/shopware/meteor",
branch: "main",
rootDir: "apps/docs",
},
storybook: {
// Base URL of the deployed component-library Storybook. Component pages link
// to their autodocs page here (see DocsPageHeaderLinks.vue).
url: "https://storybook.meteor.shopware.com",
},
ui: {
colors: {
primary: "brand",
secondary: "purple",
success: "green",
info: "blue",
warning: "orange",
error: "red",
neutral: "zinc",
},
pageHeader: {
slots: {
root: "border-b-0 pb-0",
headline: "hidden",
description: "hidden",
},
},
contentToc: {
compoundVariants: [
{
active: true,
class: {
link: "text-[var(--color-text-primary-default)]",
},
},
],
defaultVariants: {
highlightVariant: "straight",
highlightColor: "neutral",
},
},
},
});