-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: handling resource paths with query parameters
* Issue #55, #50 - Fix issue with loading resource with Query parameters, it doesn't currently slice the path for query parameters * fix(core): support paths with query params and loaders * fix: linter warrnings Co-authored-by: Jannik Keye <[email protected]>
- Loading branch information
1 parent
af5b624
commit b4b2c0a
Showing
4 changed files
with
40 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/* eslint-disable import/unambiguous, import/no-unresolved, import/no-webpack-loader-syntax */ | ||
module.exports = require("!!file-loader?name=renamed-simple.css!./simple.css?v=1.2"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/* eslint-disable import/unambiguous, import/no-unresolved */ | ||
module.exports = require("./simple.css?v=1.2"); |