PluginProbe
xSpeed Cache: AI-Powered Performance Hub with MCP, Caching & CDN / 1.0.1
xSpeed Cache: AI-Powered Performance Hub with MCP, Caching & CDN v1.0.1
1.3.3 1.3.2 1.3.1 1.3.0 1.2.4 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 All 29 releases
xspeed / vitest.config.ts

vitest.config.ts in xSpeed Cache: AI-Powered Performance Hub with MCP, Caching & CDN 1.0.1, at vitest.config.ts

14 lines 308 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { defineConfig } from 'vitest/config';
2 import react from '@vitejs/plugin-react';
3
4 export default defineConfig({
5 plugins: [react()],
6 test: {
7 environment: 'jsdom',
8 globals: true,
9 setupFiles: ['./tests-js/setup.ts'],
10 include: ['tests-js/**/*.test.{ts,tsx}'],
11 css: false,
12 },
13 });
14