mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-15 18:08:17 -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'
|
||
|
}
|
||
|
});
|