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.
2 parents 84f8dcc + 9e91d5f commit 9bc4017Copy full SHA for 9bc4017
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