import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' export default defineConfig({ plugins: [react()], build: { outDir: 'build', emptyOutDir: false, rollupOptions: { input: 'src/gutenberg/index.tsx', output: { entryFileNames: 'supaco-content-gutenberg.js', format: 'iife', name: 'SupacoContentGutenberg', globals: { react: 'React', 'react-dom': 'ReactDOM', }, }, external: ['react', 'react-dom'], }, }, })