KMH
Initial commit: FastVLM Screen Observer application
509a107
raw
history blame contribute delete
208 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
host: true
}
})