This repository was archived by the owner on Jan 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnuxt.config.js
66 lines (61 loc) · 1.61 KB
/
nuxt.config.js
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
import colors from 'vuetify/es5/util/colors'
export default {
// Disable server-side rendering (https://go.nuxtjs.dev/ssr-mode)
ssr: false,
// Global page headers (https://go.nuxtjs.dev/config-head)
head: {
titleTemplate: 'Acronym Finder',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: '' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: 'https://avatars1.githubusercontent.com/u/34212930?s=400&v=4' },
{rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Quantico:wght@400;700&display=swap'}
]
},
css: [
'@/assets/main.css'
],
plugins: [
],
components: true,
buildModules: [
'@nuxtjs/vuetify',
],
modules: [
'@nuxtjs/axios',
// '@nuxtjs/pwa',
'nuxt-socket-io',
],
io: {
// module options
sockets: [{url: 'http://localhost:5000'}]
},
axios: {
baseURL: process.env.API_URL || 'http://localhost:5000'
},
// Vuetify module configuration (https://go.nuxtjs.dev/config-vuetify)
vuetify: {
theme: {
options: { customProperties: true },
dark: false,
themes: {
light: {
primary: '#51b847',
accent: '#1982c4',
secondary: '#398840',
muted_accent: '#688D9D',
main_bg: '#e6e6e6',
light: '#ffffff',
info: colors.teal.lighten1,
warning: colors.amber.base,
error: colors.deepOrange.accent4,
success: colors.green.accent3,
dark: '#0D1321'
}
}
}
},
}