mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2025-12-11 13:26:16 +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",
|
|
},
|
|
})
|