11 lines
398 B
TypeScript
11 lines
398 B
TypeScript
|
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()],
|
||
|
})
|