mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-22 15:53:23 +00:00
ecf63006f3
(cherry picked from commit a18c3774661f466727ab46315211aecb43ef1def) Closes #3350
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;
|
|
};
|