basic navbar with scrollspy, fix bootstrap-vue asset loading, change to dark background, title fix

This commit is contained in:
Xevion
2020-08-12 23:10:20 -05:00
parent d6ec1b0867
commit 3791d26beb
6 changed files with 88 additions and 10 deletions

24
vue.config.js Normal file
View File

@@ -0,0 +1,24 @@
module.exports = {
chainWebpack: config => {
config.module
.rule('vue')
.use('vue-loader')
.loader('vue-loader')
.tap(options => {
options.transformAssetUrls = {
img: 'src',
image: 'xlink:href',
'b-avatar': 'src',
'b-img': 'src',
'b-img-lazy': ['src', 'blank-src'],
'b-card': 'img-src',
'b-card-img': 'src',
'b-card-img-lazy': ['src', 'blank-src'],
'b-carousel-slide': 'img-src',
'b-embed': 'src'
}
return options
})
}
}