19 lines
338 B
JavaScript
19 lines
338 B
JavaScript
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,
|
|
},
|
|
})
|