vite.config.ts 180 B

12345678910
  1. import { defineConfig } from 'vite'
  2. import react from '@vitejs/plugin-react'
  3. export default defineConfig({
  4. plugins: [react()],
  5. server: {
  6. port: 3000,
  7. open: true
  8. }
  9. })