This repository has been archived on 2025-11-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ndm-web-client-r/vite.config.ts
2025-07-31 17:00:15 +08:00

11 lines
197 B
TypeScript

import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 9763,
},
});