Hi, when I tried to run the tests in the cloned repo I got an error from vitest trying to get the vite.config.ts from the parent folder. I don't know why this it not happening to more people but this fixed it, so maybe it is useful for someone else.
4 lines
168 B
TypeScript
4 lines
168 B
TypeScript
import { defineConfig } from 'vite';
|
|
|
|
// Provide a stub Vite config in the CLI package to avoid resolving a parent-level vite.config.js
|
|
export default defineConfig({}); |