Files
react-dotnet-framework/frontend/vite.config.ts
2026-07-30 18:55:28 -04:00

11 lines
189 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
host: 'localhost',
},
})