You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are not many loaders that use this feature, but Webpack provides the resource query besides the loader query (inside the loader context: this.resourceQuery besides this.query). Like this:
// common loader queryimportFoofrom'some-loader?param=value!module-path.js';// loader query and resource queryimportBarfrom'some-loader?param=value!module-path.js?otherParam=otherValue';
Currently Webpack Resolver doesn't understand resource queries and cannot resolve module-path.js properly.
The text was updated successfully, but these errors were encountered:
There are not many loaders that use this feature, but Webpack provides the resource query besides the loader query (inside the loader context:
this.resourceQuery
besidesthis.query
). Like this:Currently Webpack Resolver doesn't understand resource queries and cannot resolve
module-path.js
properly.The text was updated successfully, but these errors were encountered: