1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-23 08:22:39 +00:00
Radarr/frontend/build/webpack/css-variables-loader.js

12 lines
264 B
JavaScript
Raw Permalink Normal View History

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;
};