Skip to content

Commit

Permalink
silently ignore missing bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
wizpig64 committed Sep 9, 2023
1 parent 48c4325 commit f81d9b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack_loader/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def get_bundle(self, bundle_name):
if assets.get('status') == 'done':
chunks = assets['chunks'].get(bundle_name, None)
if chunks is None:
raise WebpackBundleLookupError('Cannot resolve bundle {0}.'.format(bundle_name))
return []

filtered_chunks = self.filter_chunks(chunks)

Expand Down

0 comments on commit f81d9b9

Please sign in to comment.