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 bef93f7 commit 9e91d5fCopy full SHA for 9e91d5f
webpack/helpers.js
@@ -58,7 +58,7 @@ function isValidDLLs(dllNames, assetsPath) {
58
try {
59
// eslint-disable-next-line import/no-dynamic-require
60
const manifest = require(path.join(projectRootPath, `webpack/dlls/${dllName}.json`));
61
- const dll = fs.readFileSync(path.join(assetsPath, `dlls/dll__${dllName}.js`, 'utf8'));
+ const dll = fs.readFileSync(path.join(assetsPath, `dlls/dll__${dllName}.js`), 'utf8');
62
63
if (dll.indexOf(manifest.name) === -1) {
64
console.warn(`Invalid dll: ${dllName}`);
0 commit comments