fix: add empty vite config file to prevent resolving to parent (#273)

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.
This commit is contained in:
Juan Miguel Rodriguez Ceron
2025-04-18 02:03:15 +02:00
committed by GitHub
parent f4b9153f78
commit df25704590

4
codex-cli/vite.config.ts Normal file
View File

@@ -0,0 +1,4 @@
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({});