import { defineConfig } from "vite"; import react from "@vitejs/plugin-react"; import path from "path"; export default defineConfig({ plugins: [react()], build: { lib: { entry: path.resolve(process.cwd(), "src/index.js"), name: "uikit", formats: ["es"], fileName: () => "index.js", }, rolldownOptions: { external: [ "react", "react-dom", "react/jsx-runtime", "@chakra-ui/react", "react-icons", ], }, }, });