-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
32 lines (32 loc) · 869 Bytes
/
nuxt.config.ts
File metadata and controls
32 lines (32 loc) · 869 Bytes
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
routeRules: {
"/": {
redirect: "/getting-started/onboarding",
},
"/getting-started/download": {
redirect: {
to: "https://docs.msty.studio/getting-started/download",
statusCode: 301
}
},
},
devtools: { enabled: false },
extends: ["shadcn-docs-nuxt"],
compatibilityDate: "2024-07-02",
modules: ["@nuxthub/core"],
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",
},
},
});