cheatsheets/vite.config.js

15 lines
275 B
JavaScript
Raw Normal View History

2024-03-28 08:59:22 +00:00
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))
}
}
})