mirror of
https://github.com/papra-hq/papra
synced 2026-04-21 13:37:23 +00:00
16 lines
264 B
TypeScript
16 lines
264 B
TypeScript
import path from 'node:path';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
isolate: false,
|
|
env: {
|
|
TZ: 'UTC',
|
|
},
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
});
|