fix(config): replace hard-coded absolute path in vitest alias (#1588)

This commit is contained in:
Dongmin
2026-03-12 11:33:00 +09:00
committed by GitHub
parent 897fb114e9
commit f788bf1a8e

View File

@@ -1,3 +1,4 @@
import path from 'path';
import { defineConfig } from 'vitest/config';
export default defineConfig({
@@ -22,7 +23,7 @@ export default defineConfig({
},
resolve: {
alias: {
'@': '/home/bellman/Workspace/Oh-My-ClaudeCode-OMC-b2.0.0/src',
'@': path.resolve(__dirname, 'src'),
},
},
});