vite.config.ts

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