-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgridsome.server.js
55 lines (50 loc) · 1.51 KB
/
gridsome.server.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
// Server API makes it possible to hook into various parts of Gridsome
// on server-side and add custom data to the GraphQL data layer.
// Learn more: https://gridsome.org/docs/server-api
// Changes here require a server restart.
// To restart press CTRL + C in terminal and run `gridsome develop`
const data = require('./static/data.json')
const nodeExternals = require('webpack-node-externals')
module.exports = function (api) {
//Whitelist Vuetify
api.chainWebpack((config, { isServer }) => {
if (isServer) {
config.externals([
nodeExternals({
whitelist: [/^vuetify/]
})
])
}
})
//Load the conference data
for (const session of data.sessions) {
api.loadSource(store => {
const contentType = store.addContentType({
typeName: 'Session'
})
var speaker = session.speaker.replace(/\s/g, '')
var path = `/${speaker}`
contentType.addNode({
id: undefined,
title: session.title,
path,
fields: {
speaker: session.speaker,
speaker2: session.speaker2,
bio: session.bio,
bio2: session.bio2,
title: session.title,
abstract: session.abstract,
time: session.time,
room: session.room,
website: session.website,
twitter: session.twitter,
linkedin: session.linkedin,
website2: session.website2,
linkedin2: session.linkedin2,
twitter2: session.twitter2
}
})
})
}
}