-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnuxt.config.ts
57 lines (57 loc) · 1.54 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
ssr: false,
app: {
baseURL: "/clean-cuts/",
pageTransition: {
name: "page",
mode: "out-in",
},
layoutTransition: {
name: "layout",
mode: "out-in",
},
head: {
htmlAttrs: {
"data-bs-theme": "dark",
"style": "background-image: url('https://raw.communitydragon.org/latest/plugins/rcp-be-lol-game-data/global/default/v1/champion-splashes/498/498004.jpg');"
},
bodyAttrs: {
class: "h-100"
},
meta: [
{ name: "viewport", content: "width=device-width, initial-scale=1" },
],
link: [
{
rel: "stylesheet",
href: "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css",
integrity:
"sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM",
crossorigin: "anonymous",
},
{
rel: "stylesheet",
href: "/clean-cuts/css/app.css",
},
{
rel: "icon",
type: "image/png",
href: "/clean-cuts/favicon.png",
},
],
script: [
{
src: "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js",
integrity:
"sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz",
crossorigin: "anonymous",
},
],
},
},
experimental: {
payloadExtraction: false,
},
})