mirror of https://github.com/lidarr/Lidarr
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;
|
|
};
|