-
Notifications
You must be signed in to change notification settings - Fork 1
/
nuxt.config.js
54 lines (43 loc) · 956 Bytes
/
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
import firebase from "./config/firebase"
import head from "./config/meta"
export default {
rootDir: "./",
srcDir: "src",
ssr: true,
components: true,
// Firebase configuration is imported from config/firebase.js
firebase,
// Meta tags is imported from config/head.js
head,
plugins: [],
// Import global CSS files from here
css: [],
buildModules: [
'nuxt-windicss',
'@nuxtjs/color-mode',
'@nuxtjs/dotenv',
'nuxt-webfontloader',
],
webfontloader: {
google: {
families: ['Noto Sans:400,700'] //Loads Lato font with weights 400 and 700
}
},
modules: [
'@nuxtjs/axios',
'@nuxt/content',
'@nuxtjs/firebase',
],
colorMode: {
classSuffix: '',
preference: "dark",
},
content: {
liveEdit: false
},
// Axios module configuration: https://go.nuxtjs.dev/config-axios
axios: {},
// Build Configuration: https://go.nuxtjs.dev/config-build
build: {
}
}