-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
43 lines (40 loc) · 787 Bytes
/
nuxt.config.ts
File metadata and controls
43 lines (40 loc) · 787 Bytes
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({
ssr: false,
devtools: { enabled: true },
modules: [
'nuxt-quasar-ui',
'@pinia/nuxt'
],
quasar: {
plugins: [
'Notify',
'Dialog'
],
config: {
brand: {
primary: '#F2F2F2',
secondary: '#26A69A',
accent: '#9C27B0',
dark: '#1d1d1d',
// @ts-ignore
'dark-page': '#121212',
positive: '#21BA45',
negative: '#C10015',
info: '#31CCEC',
warning: '#F2C037'
}
}
},
runtimeConfig:{
public: {
apiKey: '',
authDomain: '',
projectId: '',
storageBucket: '',
messagingSenderId: '',
appId: '',
measurementId: '',
}
},
})