mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2025-12-13 14:26:17 +00:00
11 lines
238 B
TypeScript
11 lines
238 B
TypeScript
import {defineConfig} from "vitest/config"
|
|
import {svelte} from "@sveltejs/vite-plugin-svelte"
|
|
|
|
export default defineConfig({
|
|
plugins: [svelte({hot: !process.env.VITEST})],
|
|
test: {
|
|
globals: true,
|
|
environment: "jsdom",
|
|
},
|
|
})
|