mirror of
https://github.com/cloudstack-llc/msty-docs.git
synced 2026-07-21 00:55:21 -04:00
26 lines
682 B
TypeScript
26 lines
682 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
routeRules: {
|
|
"/": {
|
|
redirect: "/getting-started/onboarding",
|
|
},
|
|
},
|
|
devtools: { enabled: false },
|
|
extends: ["shadcn-docs-nuxt"],
|
|
compatibilityDate: "2024-07-02",
|
|
app: {
|
|
head: {
|
|
script: [
|
|
{
|
|
src: "https://insights.msty.app/js/script.tagged-events.file-downloads.js",
|
|
defer: true,
|
|
"data-domain": "docs.msty.app",
|
|
"file-types": "png,webp,dmg,zip,mp4,exe,deb,AppImage",
|
|
} as any,
|
|
],
|
|
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }],
|
|
title: "Msty Docs",
|
|
},
|
|
},
|
|
});
|