import { defineConfig } from "vite"; import react from "@vitejs/plugin-react"; export default defineConfig({ plugins: [react()], css: { preprocessorOptions: { scss: {}, }, }, build: { lib: { entry: "src/index.ts", name: "Calendar", }, rollupOptions: { external: ["react", "react-dom"], output: { globals: { react: "React", "react-dom": "ReactDOM", }, }, }, }, });