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