-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.js
More file actions
29 lines (28 loc) · 825 Bytes
/
nuxt.config.js
File metadata and controls
29 lines (28 loc) · 825 Bytes
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
const { getHead } = require('library/src/assets/js/head.js')
export default {
mode: 'spa',
head: getHead({
title: 'Co-producing adaptation options to address future cross-border climate impacts',
description: 'In this module, we show how co-production techniques can be applied to developing socio-economic scenarios and adaptation options and strategies in sub-global impact, adaptation, and vulnerability studies. We demonstrate this process in a case study focused on Kenya.',
image: 'https://climatescenarios.org/share/og-kenya.jpg'
}),
loading: { color: '#fff' },
css: [
'@/assets/style/base.scss'
],
router: {
base: '/kenya/'
},
resolve: {
alias: {
style: 'assets/style'
}
},
build: {
extend (config, ctx) {
}
},
generate: {
crawler: false
}
}