-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
62 lines (62 loc) · 1.21 KB
/
Copy pathnuxt.config.ts
File metadata and controls
62 lines (62 loc) · 1.21 KB
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
devtools: {
enabled: true,
},
modules: [
'@nuxt/eslint',
'@nuxtjs/tailwindcss',
'nuxt-quasar-ui',
'@nuxtjs/google-fonts',
'@formkit/auto-animate/nuxt',
'@pinia/nuxt',
'pinia-plugin-persistedstate/nuxt',
'@vueuse/nuxt',
],
runtimeConfig: {
public: {
version: '2.0.2',
},
},
css: [
'@/assets/css/global.scss',
],
tailwindcss: {
cssPath: '@/assets/css/tailwind.css',
},
quasar: {
iconSet: 'mdi-v7',
quietSassWarnings: true,
config: {
ripple: true,
dark: true,
brand: {
primary: '#006FFA',
secondary: '#BB86FC',
accent: '#03DAC5',
dark: '#262626',
positive: '#4CAF50',
negative: '#CF6679',
info: '#2196F3',
warning: '#FB8C00',
},
},
extras: {
animations: 'all',
},
plugins: [
'Notify',
'Dark',
'Dialog',
],
},
googleFonts: {
preconnect: true,
download: false,
families: {
Barlow: [100, 200, 300, 400, 500, 600, 700, 800, 900],
'JetBrains Mono': [400],
},
},
})