-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnuxt.config.ts
64 lines (62 loc) · 1.79 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
58
59
60
61
62
63
64
export default defineNuxtConfig({
devtools: { enabled: false },
//seo
app: {
head: {
title: 'Boardify',
meta: [
{ charset: 'utf-8' },
{
name: 'viewport',
content:
'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover, shrink-to-fit=no'
},
{
name: 'title',
content: 'Boardify - virtual whiteboard for your own and collaborative solutions.'
},
{
name: 'description',
content:
'Boardify is a virtual whiteboard that lets you easy to express your thoughts in the form of drawings'
},
{ name: 'keywords', content: 'Boardify, Whiteboard, Draw, Collaborative' },
//open graph
{ property: 'og:site:name', content: 'Boardify' },
{ property: 'og:type', content: 'website' },
{
property: 'og:title',
content: 'Boardify - virtual whiteboard for your own and collaborative solutions.'
},
{
property: 'og:description',
content:
'Boardify is a virtual whiteboard that lets you easy to express your thoughts in the form of drawings'
},
{ property: 'og:image', content: './public/about/boardify.png' }
]
}
},
modules: [
'@pinia/nuxt',
'@nuxtjs/tailwindcss',
'shadcn-nuxt',
'@formkit/auto-animate/nuxt',
'@nuxt/image',
'@vueuse/nuxt',
'@nuxtjs/google-fonts'
],
shadcn: {
prefix: 'Ui',
componentDir: './components/ui'
},
pinia: {
storesDirs: ['./store/**']
},
runtimeConfig: {
NUXT_PUBLIC_FIREBASE_API_KEY: process.env.NUXT_PUBLIC_FIREBASE_API_KEY,
public: {
NUXT_PUBLIC_FIREBASE_API_KEY: process.env.NUXT_PUBLIC_FIREBASE_API_KEY
}
},
});