1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/config/webpack/loaders/sass.js

22 lines
368 B
JavaScript
Raw Normal View History

2022-03-14 14:52:23 +01:00
module.exports = {
test: /\.(scss|sass)$/i,
exclude: /node_modules/,
use: [
{
loader: 'resolve-url-loader',
options: {
sourceMap: true
}
},
{
loader: 'sass-loader',
options: {
sourceMap: true,
sassOptions: {
includePaths: ['app/frontend/src/stylesheets']
}
2020-09-15 12:57:54 +02:00
}
}
2022-03-14 14:52:23 +01:00
]
};