-
Notifications
You must be signed in to change notification settings - Fork 16
/
nuxt.config.ts
126 lines (110 loc) · 2.74 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import process from 'node:process'
import { consola } from 'consola'
import topLevelAwait from 'vite-plugin-top-level-await'
import wasm from 'vite-plugin-wasm'
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
modules: [
'@vueuse/nuxt',
'@pinia/nuxt',
'@unocss/nuxt',
'@nuxtjs/color-mode',
'@nuxt/eslint',
'@nuxthub/core',
'@nuxt/image',
'radix-vue/nuxt',
],
hub: {
database: true,
blob: true,
cache: true,
},
runtimeConfig: {
rpcUrl: process.env.NUXT_RPC_URL || '',
GITHUB_ACTIONS: process.env.GITHUB_ACTIONS || '',
public: {
nimiqNetwork: process.env.NUXT_PUBLIC_NIMIQ_NETWORK || '',
},
},
imports: {
dirs: ['./server/utils'],
},
experimental: {
// when using generate, payload js assets included in sw precache manifest
// but missing on offline, disabling extraction it until fixed
payloadExtraction: false,
renderJsonPayloads: true,
typedPages: true,
viewTransition: true,
},
routeRules: {
'/api/**': { cors: true },
},
vite: {
plugins: [
wasm(),
topLevelAwait(),
],
optimizeDeps: {
exclude: ['@nimiq/core'],
},
},
hooks: {
'build:before': async () => {
const nimiqNetwork = process.env.NUXT_PUBLIC_NIMIQ_NETWORK as string
const validNimiqNetworks = ['main-albatross', 'test-albatross']
if (!validNimiqNetworks.includes(nimiqNetwork)) {
consola.warn(`Invalid nimiqNetwork: ${nimiqNetwork}. Please make sure it is one of: ${validNimiqNetworks.join(', ')}`)
}
},
},
nitro: {
esbuild: {
options: {
target: 'esnext',
},
},
experimental: {
tasks: true,
openAPI: true,
},
},
app: {
head: {
htmlAttrs: {
lang: 'en',
},
viewport: 'width=device-width,initial-scale=1',
link: [
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
],
meta: [
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'description', content: 'Your Nimiq-Nuxt Template' },
{ name: 'apple-mobile-web-app-status-bar-style', content: 'black-translucent' },
{ name: 'theme-color', media: '(prefers-color-scheme: light)', content: 'white' },
{ name: 'theme-color', media: '(prefers-color-scheme: dark)', content: '#1f2348' },
],
},
},
watch: [
'~~/packages/nimiq-validators-trustscore',
],
features: {
// For UnoCSS
inlineStyles: false,
},
eslint: {
config: {
standalone: false,
},
},
colorMode: {
classSuffix: '',
},
compatibilityDate: '2024-08-15',
future: {
compatibilityVersion: 4,
},
})