Move all ./client files into root as this repository becomes client-based

This commit is contained in:
Xevion
2022-05-12 03:52:39 -05:00
parent 34cfda2e52
commit 3dd281598e
212 changed files with 20 additions and 179 deletions

31
vue.config.js Normal file
View File

@@ -0,0 +1,31 @@
module.exports = {
css: {
loaderOptions: {
sass: {
prependData: '@import "@/scss/_variables.scss";'
}
}
},
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
})
}
};