mirror of
https://github.com/docmost/docmost.git
synced 2026-06-14 03:29:56 +00:00
18 lines
338 B
TypeScript
18 lines
338 B
TypeScript
|
|
import { defineConfig } from 'vitest/config';
|
||
|
|
import react from '@vitejs/plugin-react';
|
||
|
|
import * as path from 'path';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react()],
|
||
|
|
resolve: {
|
||
|
|
alias: {
|
||
|
|
'@': path.resolve(__dirname, './src'),
|
||
|
|
},
|
||
|
|
},
|
||
|
|
test: {
|
||
|
|
environment: 'jsdom',
|
||
|
|
globals: true,
|
||
|
|
setupFiles: [],
|
||
|
|
},
|
||
|
|
});
|