mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
12 lines
264 B
JavaScript
12 lines
264 B
JavaScript
const loaderUtils = require('loader-utils');
|
|
|
|
module.exports = function cssVariablesLoader(source) {
|
|
const options = loaderUtils.getOptions(this);
|
|
|
|
options.cssVarsFiles.forEach((cssVarsFile) => {
|
|
this.addDependency(cssVarsFile);
|
|
});
|
|
|
|
return source;
|
|
};
|