mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 02:18:16 -07:00
9 lines
152 B
TypeScript
9 lines
152 B
TypeScript
|
/// <reference types="vitest" />
|
||
|
import { defineConfig } from 'vite';
|
||
|
|
||
|
export default defineConfig({
|
||
|
test: {
|
||
|
environment: 'jsdom'
|
||
|
}
|
||
|
});
|