@kortexa-ai/react-multimodal
Version:
A set of react components and hooks to help with multimodal input
21 lines (19 loc) • 527 B
JavaScript
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
build: {
outDir: "./dist",
chunkSizeWarningLimit: 2500,
assetsInlineLimit: 0,
rollupOptions: {
external: [],
output: {
manualChunks: {
"react-vendor": ["react", "react-dom", "react/jsx-runtime"],
"three-core": ["three"],
},
},
},
},
});