1
1
mirror of https://github.com/Fabio286/antares.git synced 2024-12-12 08:46:04 +01:00
antares/webpack.config.js
2020-05-08 18:02:18 +02:00

18 lines
341 B
JavaScript

module.exports = {
module: {
rules: [
{
test: /\.scss$/,
use: [
{
loader: 'sass-loader',
options: {
prependData: '@import "@/scss/_variables.scss";'
}
}
]
}
]
}
};