Files
supern2n/vite.config.js
chun_qiu ba914125f2
Build Windows Portable Package / portable (release) Successful in 9m52s
Release version 1.2 with Supernode user window
2026-09-02 04:45:39 +08:00

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,
},
})