Files
ontology-term-search/frontend/vite.config.ts
2026-01-28 15:34:58 -03:00

11 lines
185 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
host: true,
port: 5173,
},
});