1
0
Fork 0
mirror of https://github.com/m1k1o/neko.git synced 2025-12-04 16:24:59 +01:00
neko/client/vue.config.js
2020-01-20 14:36:18 +00:00

20 lines
322 B
JavaScript

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