mirror of
https://github.com/simstudioai/sim.git
synced 2026-08-29 02:27:35 +08:00
11 lines
215 B
TypeScript
11 lines
215 B
TypeScript
import { fileURLToPath } from 'node:url'
|
|
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('.', import.meta.url)),
|
|
},
|
|
},
|
|
})
|