diff --git a/core/includes/update.inc b/core/includes/update.inc
index 70edeaf..9402a25 100644
--- a/core/includes/update.inc
+++ b/core/includes/update.inc
@@ -10,6 +10,7 @@
 
 use Drupal\Component\Graph\Graph;
 use Drupal\Component\Utility\Html;
+use Drupal\Core\Cache\Cache;
 use Drupal\Core\Entity\EntityStorageException;
 use Drupal\Core\Utility\Error;
 
@@ -31,6 +32,9 @@ function update_fix_compatibility() {
     $extension_config->set('module', module_config_sort($extension_config->get('module')));
     $extension_config->save();
   }
+
+  // Ensure that the assets work.
+  Cache::invalidateTags(['library_info']);
 }
 
 /**
