1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-10-15 15:08:27 +02:00
cheatsheets/vite.config.js
2024-03-28 19:59:22 +11:00

15 lines
275 B
JavaScript

import { fileURLToPath, URL } from 'url'
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
globals: true,
environment: 'jsdom'
},
resolve: {
alias: {
'~': fileURLToPath(new URL('./src', import.meta.url))
}
}
})