-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.js
120 lines (113 loc) · 3.12 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
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
const pkg = require('./package')
const bodyParser = require('body-parser')
const mongoose = require('mongoose')
const session = require('express-session')
module.exports = {
mode: 'universal',
head: {
title: pkg.name,
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: pkg.description },
{ name: 'keywords', content: 'go green, tìm việc, tim viec, việc ngay lập tức, viec ngay lap tuc, thaycacac'},
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{
rel: 'stylesheet',
href: 'https://use.fontawesome.com/releases/v5.4.2/css/all.css',
integrity:
'sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns',
crossorigin: 'anonymous'
},
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css?family=Varela+Round'
}
],
script: [
{
src: 'https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js'
},
{
src: 'https://code.jquery.com/jquery-3.3.1.slim.min.js',
integrity:
'sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo',
crossorigin: 'anonymous'
},
{
src:
'https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js',
integrity:
'sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49',
crossorigin: 'anonymous'
},
{
src:
'https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js',
integrity:
'sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy',
crossorigin: 'anonymous'
},
{
src:
'https://maps.googleapis.com/maps/api/js?key=AIzaSyCxP6jtd5QtSMWfUXLcPjnmGGUbyecCLy8&language=vi',
async: true,
defer: true
},
{
src: 'https://apis.google.com/js/platform.js',
async: true,
defer: true
}
]
},
loading: { color: '#ff0000' },
css: [
{ src: '~/assets/scss/main.scss' },
{ src: '~/assets/scss/buefy-overrides.scss', lang: 'sass' }
],
plugins: [
{
src: '~/plugins/google-authen.js',
ssr: false
},
{ src: '~/plugins/facebook-authen.js', ssr: false },
{ src: '~/plugins/socket.js', ssr: false }
],
modules: [
'@nuxtjs/axios',
'bootstrap-vue/nuxt',
'nuxt-buefy',
'~/io'
],
axios: {
proxy: true
},
build: {
vendor: ['babel-polyfill', 'axios'],
extend(config, ctx) {
if (ctx.isDev && ctx.isClient) {
config.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules)/
})
}
}
},
serverMiddleware: [
bodyParser.json(),
session({
secret: 'thaycacac',
resave: false,
saveUninitialized: false,
cookie: { maxAge: 6000000 }
}),
'~/server/users.js',
'~/server/deals.js'
// '~/server/serverIO.js'
]
}