15 lines
445 B
HTML
15 lines
445 B
HTML
<!doctype html>
|
|
<html>
|
|
<head><title>Silent renew</title></head>
|
|
<body>
|
|
<script>
|
|
// oidc-client-ts exposes a global when loaded as a classic script.
|
|
// We dynamically import it from the bundled app's chunk path.
|
|
// The simplest approach: post a message back to the opener.
|
|
if (window.opener) {
|
|
window.opener.postMessage(window.location.href, window.location.origin)
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|