import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' export default defineConfig({ plugins: [react()], clearScreen: false, build: { rollupOptions: { input: { main: 'index.html', supernodeUsers: 'supernode-users.html', }, }, }, server: { strictPort: true, }, })