9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: { host: "0.0.0.0", port: 5173 },
|
|
test: { environment: "node" },
|
|
});
|