We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac3e32c commit cd51496Copy full SHA for cd51496
packages/drizzle/vitest.config.ts
@@ -1,10 +1,10 @@
1
import { defineConfig } from 'vitest/config'
2
-import { resolve } from 'node:path'
+import { fileURLToPath } from 'node:url'
3
4
export default defineConfig({
5
resolve: {
6
alias: {
7
- '@cipherstash/drizzle/pg': resolve(__dirname, 'src/pg/index.ts'),
+ '@cipherstash/drizzle/pg': fileURLToPath(new URL('./src/pg/index.ts', import.meta.url)),
8
},
9
10
})
0 commit comments