-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
39 lines (39 loc) · 1.34 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
title: "Federico Baez",
meta: [
{
name: 'viewport',
content: 'width=device-width, initial-scale=1'
},
{
charset: 'utf-8'
}
],
script: [
{
src: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js',
integrity: 'sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW',
crossorigin: 'anonymous',
defer: true
}
],
link: [
{
rel: 'stylesheet',
href: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css',
integrity: 'sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1',
crossorigin: 'anonymous'
},
{ rel: 'stylesheet', href: '/css/style.css' },
{ rel: 'shortcut icon', href: '/img/favicon.svg' }
],
bodyAttrs: {
class: 'bg-light'
}
},
},
ssr: false
})