File dump from old repo

This commit is contained in:
Alexis
2021-07-18 15:47:25 +02:00
parent c5ac969c13
commit c4750bf80d
45 changed files with 16204 additions and 0 deletions

19
vue.config.js Normal file
View File

@@ -0,0 +1,19 @@
const path = require('path');
module.exports = {
lintOnSave: false,
configureWebpack: {
resolve: {
alias: {
"@": path.resolve(__dirname, 'src/')
}
}
},
css: {
loaderOptions: {
scss: {
prependData: `@import "@/assets/scss/_variables.scss";`
}
}
}
};