I have enabled the Delegated Admin plugin but whenever I log in I just get a blank screen. No errors, or anything else - just a blank page.
Looking at the source I can see that my custom css and favicon are being pulled in and nothing is thrown up in the console.
The window.config object seems to be populated.
Here is the page source.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fujifilm User Management Dashboard</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="https://cdn.mydomain.com/spb.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://cdn.auth0.com/styles/zocial.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdn.auth0.com/manage/v0.3.1672/css/index.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdn.auth0.com/styleguide/4.6.13/index.min.css" />
<link rel="stylesheet" type="text/css" href="//cdn.auth0.com/extensions/auth0-delegated-admin/assets/auth0-delegated-admin.ui.3.4.1.css" />
<link rel="stylesheet" type="text/css" href="https://cdn.mydomain.com/delegated_administration/dashboard.css" />
</head>
<body>
<div id="app"></div>
<script src="https://cdn.auth0.com/js/auth0/9.8.2/auth0.min.js"></script>
<script type="text/javascript" src="//cdn.auth0.com/manage/v0.3.1672/js/bundle.js"></script>
<script type="text/javascript">window.config = {...};</script>
<script type="text/javascript" src="//cdn.auth0.com/extensions/auth0-delegated-admin/assets/auth0-delegated-admin.ui.vendors.3.4.1.js"></script>
<script type="text/javascript" src="//cdn.auth0.com/extensions/auth0-delegated-admin/assets/auth0-delegated-admin.ui.3.4.1.js"></script>
</body>
</html>
```
Has anyone seen this before?