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 348e4f5 commit a95a24dCopy full SHA for a95a24d
src/plugins/source-plugin.js
@@ -246,7 +246,7 @@ export default (options) =>
246
const indexHash = normalizedUrl.lastIndexOf('#');
247
248
if (indexHash >= 0) {
249
- hash = normalizedUrl.substr(indexHash, indexHash);
+ hash = normalizedUrl.substr(indexHash); // Truncate url of small relative path can be solved from this
250
normalizedUrl = normalizedUrl.substr(0, indexHash);
251
}
252
0 commit comments