Skip to content

Commit

Permalink
Remove /develop from asset urls
Browse files Browse the repository at this point in the history
  • Loading branch information
sauntimo committed Oct 7, 2024
1 parent 004336b commit 559087e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/views/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = `<!DOCTYPE html>
<link rel="stylesheet" type="text/css" href="https://cdn.auth0.com/styleguide/4.8.10/index.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdn.auth0.com/manage/v0.3.1672/css/index.min.css">
<% if (assets.style) { %><link rel="stylesheet" type="text/css" href="<%= assets.style %>"><% } %>
<% if (assets.version) { %><link rel="stylesheet" type="text/css" href="//cdn.auth0.com/extensions/develop/auth0-authz/assets/auth0-authz.ui.<%= assets.version %>.css"><% } %>
<% if (assets.version) { %><link rel="stylesheet" type="text/css" href="//cdn.auth0.com/extensions/auth0-authz/assets/auth0-authz.ui.<%= assets.version %>.css"><% } %>
</head>
<body>
<div id="app"></div>
Expand All @@ -20,8 +20,8 @@ module.exports = `<!DOCTYPE html>
<% if (assets.vendors) { %><script type="text/javascript" src="<%= assets.vendors %>"></script><% } %>
<% if (assets.app) { %><script type="text/javascript" src="<%= assets.app %>"></script><% } %>
<% if (assets.version) { %>
<script type="text/javascript" src="//cdn.auth0.com/extensions/develop/auth0-authz/assets/auth0-authz.ui.vendors.<%= assets.version %>.js"></script>
<script type="text/javascript" src="//cdn.auth0.com/extensions/develop/auth0-authz/assets/auth0-authz.ui.<%= assets.version %>.js"></script>
<script type="text/javascript" src="//cdn.auth0.com/extensions/auth0-authz/assets/auth0-authz.ui.vendors.<%= assets.version %>.js"></script>
<script type="text/javascript" src="//cdn.auth0.com/extensions/auth0-authz/assets/auth0-authz.ui.<%= assets.version %>.js"></script>
<% } %>
</body>
</html>`;

0 comments on commit 559087e

Please sign in to comment.