mirror of https://github.com/webpack/webpack.git
4 lines
98 B
JavaScript
4 lines
98 B
JavaScript
|
module.exports = function loader(content) {
|
||
|
return content + `.using-loader { color: red; }`;
|
||
|
};
|