streaming-data-dashboard/vite.config.ts
2026-06-07 23:41:32 +08:00

11 lines
No EOL
199 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
// vite.config.ts
base: '/',
plugins: [react()],
worker: {
format: 'es',
},
});