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

@ -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/'
})