vite.config.js 164 B

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