web: remove version from queryargs
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
450bb9040d
commit
6ce3d2916b
|
@ -10,6 +10,7 @@ import externalGlobals from "rollup-plugin-external-globals";
|
|||
const resources = [
|
||||
{ src: "node_modules/rapidoc/dist/rapidoc-min.js", dest: "dist/" },
|
||||
|
||||
{ src: "node_modules/@patternfly/patternfly/patternfly-base.css", dest: "dist/" },
|
||||
{ src: "node_modules/@patternfly/patternfly/patternfly.min.css", dest: "dist/" },
|
||||
{ src: "src/authentik.css", dest: "dist/" },
|
||||
|
||||
|
|
|
@ -3,12 +3,12 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<link rel="icon" type="image/png" href="/static/dist/assets/icons/icon.png?v=2021.3.4">
|
||||
<link rel="shortcut icon" type="image/png" href="/static/dist/assets/icons/icon.png?v=2021.3.4">
|
||||
<link rel="stylesheet" type="text/css" href="/static/dist/patternfly-base.css?v=2021.3.4">
|
||||
<link rel="stylesheet" type="text/css" href="/static/dist/authentik.css?v=2021.3.4">
|
||||
<script src="/api/jsi18n/?v=2021.3.4"></script>
|
||||
<script src="/static/dist/main.js?v=2021.3.4" type="module"></script>
|
||||
<link rel="icon" type="image/png" href="/static/dist/assets/icons/icon.png">
|
||||
<link rel="shortcut icon" type="image/png" href="/static/dist/assets/icons/icon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/static/dist/patternfly-base.css">
|
||||
<link rel="stylesheet" type="text/css" href="/static/dist/authentik.css">
|
||||
<script src="/api/jsi18n/"></script>
|
||||
<script src="/static/dist/main.js" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<ak-message-container></ak-message-container>
|
||||
|
|
|
@ -3,12 +3,12 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<link rel="icon" type="image/png" href="/static/dist/assets/icons/icon.png?v=2021.3.4">
|
||||
<link rel="shortcut icon" type="image/png" href="/static/dist/assets/icons/icon.png?v=2021.3.4">
|
||||
<link rel="stylesheet" type="text/css" href="/static/dist/patternfly-base.css?v=2021.3.4">
|
||||
<link rel="stylesheet" type="text/css" href="/static/dist/authentik.css?v=2021.3.4">
|
||||
<script src="/api/jsi18n/?v=2021.3.4"></script>
|
||||
<script src="/static/dist/flow.js?v=2021.3.4" type="module"></script>
|
||||
<link rel="icon" type="image/png" href="/static/dist/assets/icons/icon.png">
|
||||
<link rel="shortcut icon" type="image/png" href="/static/dist/assets/icons/icon.png">
|
||||
<link rel="stylesheet" type="text/css" href="/static/dist/patternfly-base.css">
|
||||
<link rel="stylesheet" type="text/css" href="/static/dist/authentik.css">
|
||||
<script src="/api/jsi18n/"></script>
|
||||
<script src="/static/dist/flow.js" type="module"></script>
|
||||
</head>
|
||||
<body>
|
||||
<ak-flow-executor></ak-flow-executor>
|
||||
|
|
Reference in New Issue