-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
32 lines (31 loc) · 995 Bytes
/
nuxt.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
import { defineNuxtConfig } from "nuxt/config"
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
modules: [
"@pinia/nuxt",
"@pinia-plugin-persistedstate/nuxt",
"@inkline/nuxt",
],
inkline: {
colorMode: "dark"
},
piniaPersistedstate: {
storage: "localStorage"
},
app: {
baseURL: "/run-highlighter/",
head: {
link: [
{ rel: "icon", type: "image/gif", href: "favicon.gif" }
],
meta: [
{ name: "description", content: "Twitch highlighting tool for speedruns"},
{ name: "twitter:card", content: "summary" },
{ name: "twitter:site", content: "@dalleth_" },
{ name: "twitter:title", content: "Run Highlighter" },
{ name: "twitter:description", content: "Twitch highlighting tool for speedruns" },
]
}
},
ssr: false
})