Skip to content

Commit

Permalink
fix: classic level as external
Browse files Browse the repository at this point in the history
  • Loading branch information
lsagetlethias committed Oct 23, 2022
1 parent efa763f commit 88134d1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions webpack.renderer.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ module.exports =
});

console.log("REND before", config.externals);
if (config.externals && config.externals.includes("classic-level")) {
config.externals = config.externals.filter(
(name) => name !== "classic-level"
);
}
// if (config.externals && config.externals.includes("classic-level")) {
// config.externals = config.externals.filter(
// (name) => name !== "classic-level"
// );
// }
console.log("REND after", config.externals);

if (config.entry) {
Expand Down

0 comments on commit 88134d1

Please sign in to comment.