artifactId
Configure the artifactId
that will appear in the pom.xml
file.

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { keycloakify } from "keycloakify/vite-plugin";
export default defineConfig({
plugins: [
react(),
keycloakify({
artifactId: "keycloakify-advanced-starter-keycloak-theme"
})
],
})
By default it's <themeName>-keycloak-theme
See, keycloak.themeName
option.
You can overwrite this using an environment variable:
KEYCLOAKIFY_ARTIFACT_ID="my-cool-theme" npx keycloakify build
Last updated
Was this helpful?