-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
70 lines (70 loc) · 1.96 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
65
66
67
68
69
70
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
runtimeConfig: {
public: {
baseURL: process.env.BASE_URL,
}
},
compatibilityDate: '2024-04-03',
devtools: { enabled: true },
modules: ["@nuxtjs/tailwindcss", '@nuxtjs/supabase', "@nuxtjs/seo", '@nuxt/content'],
app: {
head: {
script: [
{ src: 'https://cloud.umami.is/script.js', defer: true, 'data-website-id': 'a7338219-eaed-40da-8a1c-7b80d07747f7' }
],
link: [
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
{ rel: 'stylesheet', href: 'https://api.fontshare.com/v2/css?f[]=satoshi@400,500,600&display=swap' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com' },
{ rel: 'stylesheet', href: 'https://fonts.gstatic.com' },
{ rel: "stylesheet", href: 'https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0' } // Added Google Material Icons
],
meta: [
{ name: "msvalidate.01", content: "1352DC4C86BE1B9F6608A54EA2C5F285" }
]
},
},
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}, supabase: {
redirectOptions: {
login: '/login',
callback: '/confirm',
include: ['/dashboard/*'],
exclude: ['*'],
cookieRedirect: false,
}
},
sitemap: {
exclude: [
'/confirm',
'/Confirm',
'/dashboard'
]
},
site: {
url: process.env.BASE_URL,
name: 'Linkvoices',
description: 'send direct crypto invoices',
defaultLocale: 'en',
identity: {
type: 'Organization'
},
// twitter: {
// card: 'summary_large_image',
// site: '@yourtwitterhandle',
// }
},
content: {
// Default content directory
dir: 'content'
},
ogImage: {
enabled: true
}
})