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
{{ message }}
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
if we config webpack like this
config.output.filename(
js/[name].js?${VERSION.commit}).end();
,webpack will cut off the query of the fileName, when write into the MemoryFileSystem instance.
const queryStringIdx = targetFile.indexOf("?"); if (queryStringIdx >= 0) { targetFile = targetFile.substr(0, queryStringIdx); }
but we will read the cache content with a query name, so that we can't read the correct file.
maybe we can cut off the query when read the fileContent from MemoryFileSystem instance
The text was updated successfully, but these errors were encountered: