This commit is contained in:
Joseph Garrone 2024-02-01 04:50:06 +01:00
parent b7bec72161
commit 91d95c7eab
5 changed files with 14 additions and 46 deletions

View file

@ -26,7 +26,7 @@
"dependencies": {
"evt": "^2.5.7",
"oidc-spa": "^4.0.0",
"keycloakify": "^9.2.0",
"keycloakify": "9.3.0-rc.0",
"powerhooks": "^1.0.8",
"tsafe": "^1.6.6",
"zod": "^3.22.4",

View file

@ -1,39 +0,0 @@
/*
<link rel="preload" href="%PUBLIC_URL%/fonts/WorkSans/worksans-bold-webfont.woff2" as="font" crossorigin="anonymous">
<link rel="preload" href="%PUBLIC_URL%/fonts/WorkSans/worksans-medium-webfont.woff2" as="font" crossorigin="anonymous">
<link rel="preload" href="%PUBLIC_URL%/fonts/WorkSans/worksans-regular-webfont.woff2" as="font" crossorigin="anonymous">
<link rel="preload" href="%PUBLIC_URL%/fonts/WorkSans/worksans-semibold-webfont.woff2" as="font" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="%PUBLIC_URL%/fonts/WorkSans/font.css">
*/
@font-face {
font-family: "Work Sans";
font-style: normal;
font-weight: normal; /*400*/
font-display: swap;
src: url("./worksans-regular-webfont.woff2") format("woff2");
}
@font-face {
font-family: "Work Sans";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url("./worksans-medium-webfont.woff2") format("woff2");
}
@font-face {
font-family: "Work Sans";
font-style: normal;
font-weight: 600;
font-display: swap;
src: url("./worksans-semibold-webfont.woff2") format("woff2");
}
@font-face {
font-family: "Work Sans";
font-style: normal;
font-weight: bold; /*700*/
font-display: swap;
src: url("./worksans-bold-webfont.woff2") format("woff2");
}

View file

@ -26,6 +26,6 @@ export const BASE_URL = (()=>{
return (kcContext === undefined || import.meta.env.MODE === 'development')
? import.meta.env.BASE_URL
: `${kcContext.url.resourcesPath}/build`;
: `${kcContext.url.resourcesPath}/build/`;
})();

View file

@ -3,8 +3,15 @@ import react from '@vitejs/plugin-react'
// NOTE: This is just for the Keycloakify core contributors to be able to dynamically link
// to a local version of the keycloakify package. This is not needed for normal usage.
import commonjs from "vite-plugin-commonjs";
//import { keycloakify } from "keycloakify/vite-plugin";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), commonjs()],
plugins: [
react(),
commonjs(),
//keycloakify()
],
assetsInclude: ["**/*.md"],
base: '/abcde12345/'
})

View file

@ -2600,10 +2600,10 @@ jwt-decode@^3.1.2:
resolved "https://registry.yarnpkg.com/jwt-decode/-/jwt-decode-3.1.2.tgz#3fb319f3675a2df0c2895c8f5e9fa4b67b04ed59"
integrity sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A==
keycloakify@^9.2.0:
version "9.2.0"
resolved "https://registry.yarnpkg.com/keycloakify/-/keycloakify-9.2.0.tgz#236edadcc35f4ab039529577b26fc28c117bd55b"
integrity sha512-VbQ5EL7hvsEuoEr9pXd+2KDhVcNd4YOJuKG6+/pH0RfNeO6sow63WD8C+XiGY6HoEIKb22S2NNKR3mjclRaCrA==
keycloakify@9.3.0-rc.0:
version "9.3.0-rc.0"
resolved "https://registry.yarnpkg.com/keycloakify/-/keycloakify-9.3.0-rc.0.tgz#3640b13578bd011ba9a495eb7f01e6bc387f4008"
integrity sha512-YuKIEsL18DQyrbEIYAG1OaE23WjnOsCo5MUK5R8/a+4A2ftXsmZTZR000qaWERZ9QFt7VFp1rJpzZQOgp6LXew==
dependencies:
"@babel/generator" "^7.22.9"
"@babel/parser" "^7.22.7"