mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
1d689888b0
* Updated package json but not updated source files * Update eslint plugin * updated files
34 lines
671 B
JavaScript
34 lines
671 B
JavaScript
'use strict';
|
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
|
|
module.exports = function (options) {
|
|
return {
|
|
test: /\.scss$/,
|
|
use: [
|
|
MiniCssExtractPlugin.loader,
|
|
{
|
|
loader: 'css-loader',
|
|
options: {
|
|
importLoaders: 2,
|
|
url: options.preserveUrl,
|
|
sourceMap: options.sourceMap,
|
|
},
|
|
},
|
|
{
|
|
loader: 'postcss-loader',
|
|
options: {
|
|
sourceMap: options.sourceMap,
|
|
config: { path: __dirname },
|
|
},
|
|
},
|
|
{
|
|
loader: 'sass-loader',
|
|
options: {
|
|
sourceMap: options.sourceMap,
|
|
},
|
|
},
|
|
],
|
|
};
|
|
};
|