1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2026-01-12 22:12:04 +01: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))
}
}
})