-
Notifications
You must be signed in to change notification settings - Fork 1
/
nuxt.config.ts
65 lines (63 loc) · 1.8 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
ssr: true,
app: {
baseURL: '/',
head: {
htmlAttrs: {
lang: 'en',
},
title:
'myWitWallet: Your Secure & Instant Non-Custodial Wallet for Witnet',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{
hid: 'description',
name: 'description',
content:
'The ultimate non-custodial wallet for your Wit coins—secure, fast, and seamless. Download now!',
},
{ name: 'theme-color', content: '#b566ff' },
{ name: 'robots', content: 'index, follow' },
{ name: 'og:type', content: 'website' },
{
name: 'og:title',
content:
'myWitWallet: Your Secure & Instant Non-Custodial Wallet for Witnet',
},
{
name: 'og:description',
content:
'The ultimate non-custodial wallet for your Wit coins—secure, fast, and seamless. Download now!',
},
{ name: 'og:image', content: '/my-wit-wallet.png' },
{ name: 'og:url', content: 'https://myWitWallet.app' },
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700&display=swap',
},
],
},
},
modules: ['nuxt-gtag'],
gtag: {
id: 'GTM-WXTPK299',
},
css: ['~/styles/main.scss'],
vite: {
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler',
additionalData: '@use "~/styles/colors.scss" as *;',
},
},
},
},
components: true,
compatibilityDate: '2024-11-19',
})