-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
33 lines (30 loc) · 939 Bytes
/
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
plugins: [
'~/plugins/global-plugin.js'
],
// nitro:{
// output:{
// publicDir:'docs'
// }
// },
app:{
head:{
link:[
{ rel: 'stylesheet', href: '/assets/libs/bootstrap-5.3.3-dist/bootstrap.rtl.min.css' },
{ rel: 'stylesheet', href: '/assets/css/app.css' },
{ rel: 'stylesheet', href: '/assets/css/Vazirmatn-font-face.css' },
{ rel: 'icon', type: 'image/png', href: "/assets/img/icon.png" }
],
script:[
{'src':'/assets/libs/bootstrap-5.3.3-dist/bootstrap.bundle.js'},
{'src':'/assets/libs/code-highlighter/prism.js'},
{'src':'/assets/libs/showdown/showdown.min.js'},
],
meta:[
{name:'google-site-verification',content:'MoFA0Adxt_rMY1UHDdCNVWB1DKBsQIAQHQFXRDf4hEA'},
],
},
}
})