2022-08-09 23:18:59 +00:00
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
|
|
|
plugins: [react()],
|
2022-08-11 07:28:30 +00:00
|
|
|
server: {
|
|
|
|
port: 5422,
|
|
|
|
},
|
2022-08-09 23:18:59 +00:00
|
|
|
})
|