UNPKG

@jingoz/react-virtual-list

Version:

21 lines (19 loc) 394 B
import react from '@vitejs/plugin-react' import type { UserConfig } from 'vite' export default { plugins: [react()], build: { outDir: 'build', rollupOptions: { external: ['react'], }, lib: { name: 'react-virtual-list', entry: 'lib/index.ts', fileName: 'index', }, }, server: { port: 5555, }, } satisfies UserConfig