vite.config.ts hinzugefügt

This commit is contained in:
ds
2026-06-28 18:27:26 +00:00
parent 988ebb736c
commit 62453bc65f
+12
View File
@@ -0,0 +1,12 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
build: {
lib: {
entry: "src/index.tsx",
formats: ["es"]
}
}
});