Radarr/frontend/build/webpack/css-variables-loader.js

13 lines
317 B
JavaScript
Raw Normal View History

// eslint-disable-next-line filenames/match-exported
2018-11-23 07:04:42 +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;
};