mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
7b2fd5140b
(cherry picked from commit a18c3774661f466727ab46315211aecb43ef1def)
13 lines
317 B
JavaScript
13 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;
|
|
};
|