This repository has been archived on 2026-06-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
spellsaurus/client/vue.config.js
2021-01-21 11:16:09 +01:00

19 lines
315 B
JavaScript

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