diff --git a/src/main/resources/swagger/index.js b/src/main/resources/swagger/index.js
index 2a6fbfd60d9634ea5dff2ddbd01738b4e600fc60..6a67c5b83215a471b772cbd4432086ddd6b3386a 100644
--- a/src/main/resources/swagger/index.js
+++ b/src/main/resources/swagger/index.js
@@ -16,8 +16,21 @@ window.onload = function() {
   });
 
   window.ui = ui;
+
+  setImage('logo-img', './drupal/images/logo.b64', 'src');
+  setImage('banner-img', './uswds/img/us_flag_small.b64', 'src');
+  setImage('icon', './favicon.b64', 'href');
 };
 
+function setImage(id, path, attr) {
+  fetch(path)
+    .then(res => res.text())
+    .then(text => {
+      const el = document.getElementById(id);
+      el.setAttribute(attr, text);
+  });
+}
+
 function updateContextPath(contextPath) {
   return {
     statePlugins: {