mirror of
https://github.com/cloudstack-llc/msty-studio-docs.git
synced 2026-07-25 12:46:22 -04:00
65 lines
1.3 KiB
TypeScript
65 lines
1.3 KiB
TypeScript
export default defineAppConfig({
|
|
shadcnDocs: {
|
|
site: {
|
|
name: "Msty Studio Docs",
|
|
description:
|
|
"Get started with guides and resources to maximize your conversational AI experience with Msty Studio.",
|
|
ogImage: "https://docs.msty.studio/images/welcome-to-msty.png",
|
|
},
|
|
theme: {
|
|
customizable: false,
|
|
color: "blue",
|
|
radius: 0.5,
|
|
},
|
|
header: {
|
|
title: "Msty Studio Docs",
|
|
showTitle: true,
|
|
darkModeToggle: true,
|
|
logo: {
|
|
light: "/icon.svg",
|
|
dark: "/icon.svg",
|
|
},
|
|
nav: [],
|
|
links: [
|
|
{
|
|
icon: "tabler:brand-github",
|
|
to: "https://github.com/cloudstack-llc/msty-studio-docs",
|
|
target: "_blank",
|
|
},
|
|
],
|
|
},
|
|
aside: {
|
|
useLevel: false,
|
|
},
|
|
main: {
|
|
breadCrumb: true,
|
|
showTitle: true,
|
|
},
|
|
footer: {
|
|
credits: "CloudStack, LLC",
|
|
links: [
|
|
{
|
|
icon: "ph:cube",
|
|
to: "https://msty.ai?ref=docs",
|
|
target: "_blank",
|
|
},
|
|
],
|
|
},
|
|
toc: {
|
|
enable: false,
|
|
title: "On This Page",
|
|
links: [
|
|
{
|
|
title: "Go to Msty App",
|
|
to: "https://msty.ai?ref=docs",
|
|
target: "_blank",
|
|
},
|
|
],
|
|
},
|
|
search: {
|
|
enable: true,
|
|
inAside: false,
|
|
},
|
|
},
|
|
});
|