mirror of
https://github.com/vee1e/GDB-UI.git
synced 2026-09-01 10:48:57 +00:00
17 lines
406 B
JavaScript
17 lines
406 B
JavaScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
globals: true,
|
|
environment: "jsdom",
|
|
setupFiles: "./src/setupTests.js",
|
|
include: ["src/**/*.{test,spec}.{jsx,ts}"], // Moved out of the nested test object
|
|
},
|
|
server: {
|
|
host: "0.0.0.0",
|
|
port: 5173,
|
|
},
|
|
});
|