memory-agent-demo / vite.config.js
dixiebone13-a11y
v2.5: Full rewrite - Vite+React+Tailwind build, all 13 audit fixes
82e6bed
raw
history blame contribute delete
179 Bytes
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: { host: '0.0.0.0', port: 7860 },
});