-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
40 lines (40 loc) · 1.05 KB
/
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
33
34
35
36
37
38
39
40
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
ssr: false,
modules: ["@nuxtjs/tailwindcss", "@nuxtjs/apollo", "@vueuse/nuxt"],
runtimeConfig: {
nanapiUrl: "",
nanapiClientUsername: "",
nanapiClientPassword: "",
public: {
defaultClientId: "",
},
},
app: {
head: {
title: "Waifu Collection",
meta: [
{ name: "description", content: "WaiColle companion web app" },
{ name: "theme-color", content: "#956DA6" },
{ property: "og:type", content: "website" },
{ property: "og:site_name", content: "Japan7/waicolle-web" },
{
property: "og:image",
content: "https://waicolle.japan7.bde.enseeiht.fr/logo512.png",
},
],
link: [
{ rel: "manifest", href: "/manifest.json" },
{ rel: "apple-touch-icon", href: "/logo192.png" },
],
},
},
apollo: {
clients: {
default: {
httpEndpoint: "https://graphql.anilist.co",
},
},
},
});