-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
49 lines (44 loc) · 1.45 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
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
modules: [
'@pinia/nuxt',
// 'nuxt-vuefire',
],
app: {
head: {
meta: [
// <meta name="viewport" content="width=device-width, initial-scale=1">
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
],
script: [
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: "stylesheet", href: "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css", integrity: "sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==", crossorigin: "anonymous", referrerpolicy: "no-referrer" },
{ rel: "stylesheet", href: "style.css" },
{ href: "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css", rel: "stylesheet", integrity: "sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65", crossorigin: "anonymous" },
{
rel: 'stylesheet',
href: 'css/bootstrap.css'
},
{
rel: 'stylesheet',
href: 'js/bootstrap.js'
},
{
rel: 'stylesheet',
href: 'css/vuetify.css'
},
{
rel: 'stylesheet',
href: 'style.css'
}
],
// please note that this is an area that is likely to change
style: [
],
noscript: [
]
}
}
})