We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 054532a commit 0269860Copy full SHA for 0269860
src/loader.js
@@ -149,7 +149,7 @@ export function pitch(request) {
149
const count = identifierCountMap.get(dependency.identifier) || 0;
150
151
this._module.addDependency(
152
- new CssDependency(dependency, module.context, count)
+ new CssDependency(dependency, dependency.context, count)
153
);
154
identifierCountMap.set(dependency.identifier, count + 1);
155
}
@@ -191,6 +191,7 @@ export function pitch(request) {
191
192
return {
193
identifier: module.identifier(),
194
+ context: module.context,
195
content,
196
media,
197
sourceMap,
0 commit comments