forked from bootstrap-vue/bootstrap-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.js
33 lines (29 loc) · 867 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
const path = require('path');
module.exports = {
srcDir: path.resolve(__dirname, 'docs'),
dev: process.env.NODE_ENV !== 'production',
head: {
title: 'Bootstrap Vue',
meta: [
{charset: 'utf-8'},
{name: 'viewport', content: 'width=device-width, initial-scale=1'}
],
link: [
{rel: 'icon', href: '/banner.png', sizes: '16x16', type: 'image/png'}
]
},
generate: {
dir: 'docs-dist'
},
plugins: [
'~plugins/bootstrap-vue.js',
'~plugins/highlightjs.js',
'~plugins/ga.js'
],
css: [
path.resolve(__dirname, 'node_modules/bootstrap/dist/css/bootstrap.css'),
path.resolve(__dirname, 'node_modules/highlightjs/styles/atom-one-dark.css'),
'~assets/css/docs.min.css',
'~assets/css/styles.css'
]
};