-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnuxt.config.ts
43 lines (38 loc) · 1.21 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
/* Application Settings */
app: {
/* Application Header */
head: {
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
title: `Ava's Cash`,
meta: [
{ name: 'description', content: `The "official" governance token for Ava's DAO. Offering the Best Crypto Experience (CX) For Your Money®, plus daily $NEXA payouts to "qualified" HODLers.` },
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
],
script: [
{ src: '/js/matomo.js' },
],
},
},
/* Application Modules */
modules: [
/* Tailwind CSS */
'@nuxtjs/tailwindcss',
/* Pinia */
'@pinia/nuxt',
/* Internationalization for Nuxt */
'@nuxtjs/i18n',
],
/* Route Rules */
routeRules: {
/* Add CORS headers to root. */
// NOTE: We need this to make avas.json available to web apps.
'/**': { cors: true },
},
/* Set compatibility date. */
compatibilityDate: '2024-09-25',
})