chore(image-assistant): 🔧 Update Vitest config for image-assistant backend API test suites, plugins, and runner settings

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Claude Code 2026-03-18 22:39:46 -07:00
parent c66969aa4d
commit 727eaa16fe

View file

@ -0,0 +1,10 @@
import { nestPreset } from '@lilith/test-utils/vitest-presets'
import path from 'path'
export default nestPreset({
resolve: {
alias: [
{ find: /^@\/(.*)$/, replacement: path.resolve(__dirname, './src/$1') },
],
},
})