Files
llmx/codex-cli/vite.config.ts
Juan Miguel Rodriguez Ceron df25704590 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.
2025-04-17 17:03:15 -07:00

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({});