1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-20 22:32:50 +00:00
Sonarr/frontend/build/webpack/css-variables-loader.js

12 lines
264 B
JavaScript
Raw Normal View History

2018-01-13 02:01:27 +00:00
const loaderUtils = require('loader-utils');
module.exports = function cssVariablesLoader(source) {
const options = loaderUtils.getOptions(this);
options.cssVarsFiles.forEach((cssVarsFile) => {
this.addDependency(cssVarsFile);
});
return source;
};