2026-04-23 17:49:55 +08:00
|
|
|
import { defineConfig } from 'vite';
|
2026-04-24 11:56:02 +08:00
|
|
|
import plugin from '@vitejs/plugin-react';
|
2026-04-23 17:49:55 +08:00
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [plugin()],
|
|
|
|
|
server: {
|
2026-04-24 11:56:02 +08:00
|
|
|
port: 51239,
|
2026-04-23 17:49:55 +08:00
|
|
|
}
|
2026-04-24 11:56:02 +08:00
|
|
|
})
|