-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.js
57 lines (56 loc) · 1.67 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
/*eslint-env node*/
var webpack = require('webpack');
module.exports = {
build: {
plugins: [
new webpack.ProvidePlugin({
'$': 'jquery'
//'_': 'lodash'
})
], vendor: [
'axios', 'jquery'
]
}, head: {
htmlAttrs: {
prefix: 'og: http://ogp.me/ns#'
}, bodyAttrs:{
"class": 'eightk'
}, meta: [
{ charset: 'utf-8' },
{ property: 'og:title', content: '8K Assets' },
{ property: 'og:image', content: 'https://coinprism.blob.core.windows.net/profile/icon/AZHHLvzKbsEPZUQXvCfihkEknF71GHNpPH.jpg' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
], link: [
{
rel: 'stylesheet', href: '//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css',
integrity: 'sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN', crossorigin: 'anonymous'
}
], script: [
{ innerHTML: `{
"@context": "http://schema.org",
"@type": "Organization",
"url": "http://eigh.tk", "name": "Eightk",
"logo": "https://coinprism.blob.core.windows.net/profile/icon/AZHHLvzKbsEPZUQXvCfihkEknF71GHNpPH.jpg",
"brand": {
"@type": "Brand",
"name": "8K"
},
"department": {
"@type": "Organization",
"name": "8K Assets",
"email": "coin@eigh.tk",
"url": "https://assets.eigh.tk"
}
}`,
type: 'application/ld+json' }
],
__dangerouslyDisableSanitizers: ['script']
},
css: [
{ src:'~assets/eightk.scss', lang:'scss' }
],
plugins: [
{ src: '~plugins/ga.js', ssr: false },
{ src: '~plugins/foundation.js'}
]
};