mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-28 18:20:57 +00:00
15 lines
250 B
TypeScript
15 lines
250 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 5184,
|
|
host: "0.0.0.0",
|
|
},
|
|
test: {
|
|
environment: "jsdom",
|
|
globals: true,
|
|
},
|
|
});
|