Joseph Garrone
2024-01-27 06:42:45 +01:00
parent a41354b740
commit 8e0c62cf84
15 changed files with 174 additions and 15788 deletions

10
vite.config.ts Normal file
View File

@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
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";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), commonjs()],
})