mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
15 lines
328 B
JavaScript
15 lines
328 B
JavaScript
|
module.exports = {
|
||
|
head: {
|
||
|
meta: [
|
||
|
{ charset: 'utf-8' },
|
||
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
|
||
|
],
|
||
|
link: [
|
||
|
{ rel: 'stylesheet', href: 'https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css' }
|
||
|
]
|
||
|
},
|
||
|
build: {
|
||
|
vendor: ['axios']
|
||
|
}
|
||
|
}
|