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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
export default defineNuxtConfig({
modules: ["@nuxtjs/tailwindcss", "@nuxt/image", "@nuxtjs/google-fonts", "nuxt-icon", "nuxt-disqus"],
devtools: { enabled: false },
tailwindcss: { viewer: false },
googleFonts: {
families: {
Outfit: [400, 500, 600, 700],
Poppins: [400, 500, 600, 700]
}
},
disqus: {
shortname: "hiruki"
},
app: {
head: {
title: "Hiruki - Online Anime Streaming Without Ads",
meta: [
{
name: "description",
content: "Hiruki is a simple yet elegant anime streaming website that offers high quality anime content, accessible on multiple devices without ads for free"
},
{
name: "keywords",
content: "hiruki, hiruki xyz, hiruki anime, hiruki streaming, hiruki anime streaming, hiruki streaming anime, hiruki watch, watch hiruki, streaming hiruki"
},
{
name: "robots",
content: "index, follow"
},
{
property: "og:title",
content: "Hiruki - Online Anime Streaming Without Ads",
},
{
property: "og:description",
content: "Hiruki is a simple yet elegant anime streaming website that offers high quality anime content, accessible on multiple devices without ads for free",
},
{
property: "og:type",
content: "website",
},
{
property: "og:image",
content: "/apple-touch-icon.png",
},
{
property: "og:url",
content: "https://hiruki.xyz/",
},
{
property: "og:site:name",
content: "Hiruki",
},
{
property: "og:locale",
content: "en_US",
}
],
link: [
{
rel: "canonical",
href: "https://hiruki.xyz/"
},
{
rel: "shortcut icon",
type: "image/x-icon",
href: "/favicon.ico"
}
]
}
},
runtimeConfig: {
API: process.env.API_URL
}
});
|