mirror of
https://github.com/Radarr/Radarr
synced 2024-12-23 16:32:48 +00:00
7b2fd5140b
(cherry picked from commit a18c3774661f466727ab46315211aecb43ef1def)
12 lines
317 B
JavaScript
12 lines
317 B
JavaScript
// eslint-disable-next-line filenames/match-exported
|
|
const loaderUtils = require('loader-utils');
|
|
|
|
module.exports = function cssVariablesLoader(source) {
|
|
const options = loaderUtils.getOptions(this);
|
|
|
|
options.cssVarsFiles.forEach((cssVarsFile) => {
|
|
this.addDependency(cssVarsFile);
|
|
});
|
|
|
|
return source;
|
|
};
|