-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
93 lines (84 loc) · 1.89 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
const isProduction = !!process.env.IS_PRODUCTION
export default defineNuxtConfig({
/*
* Build config
*/
typescript: {
strict: true,
},
css: ['~/assets/scss/main.scss'],
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
/*
* App config
*/
router: {
options: {
linkActiveClass: 'active',
linkExactActiveClass: 'active-exact',
},
},
runtimeConfig: {
public: {
isProduction,
/**
* Override in .env
* NOTE: Nuxt's native syncing envs are not used because of vars' nuxt-specific prefixes
* https://v3.nuxtjs.org/guide/features/runtime-config/#environment-variables
*/
BASE_URL: process.env.BASE_URL ?? 'localhost:3000',
WALLETCONNECT_PROJECT_ID: process.env.WALLETCONNECT_PROJECT_ID ?? '',
WALLETCONNECT_RELAY_URL: process.env.WALLETCONNECT_RELAY_URL ?? 'wss://relay.walletconnect.com',
INFURA_PROJECT_ID: process.env.INFURA_PROJECT_ID ?? '',
},
},
/*
* Modules config
*/
modules: [
'@nuxt/content',
'nuxt-icon',
'@nuxtjs/color-mode',
'@nuxtjs/i18n-edge',
'@pinia/nuxt',
'@vueuse/nuxt',
['nuxt-proxy', {
options: {
target: 'https://gateway.pinata.cloud/ipfs/',
changeOrigin: true,
pathFilter: [
'^ipfs://',
],
// pathFilter: (path, req) => {
// return path.match('^/api') && req.method === 'GET';
// },
},
}],
// perfomance
'@nuxtjs/critters',
'@nuxtjs/fontaine',
],
i18n: {
langDir: 'locales',
locales: [
{
code: 'en',
name: 'en',
file: 'en-US.yml',
iso: 'en-US',
},
],
vueI18n: './i18n.config.mjs',
strategy: 'prefix_and_default',
lazy: true,
defaultLocale: 'en',
detectBrowserLanguage: {
useCookie: true,
cookieKey: 'i18n',
},
},
})