mirror of
https://github.com/Xevion/the-office.git
synced 2026-01-31 12:26:13 -06:00
- Added tailwindcss, shadcn, vite, typescript, pinia - Removed webpack, ejs, moment, instantsearch, algolia, bootstrap - Disabled most sass, original components - Began redesigning light themed index page
15 lines
382 B
TypeScript
15 lines
382 B
TypeScript
import { fileURLToPath } from 'node:url'
|
|
import { mergeConfig, defineConfig, configDefaults } from 'vitest/config'
|
|
import viteConfig from './vite.config'
|
|
|
|
export default mergeConfig(
|
|
viteConfig,
|
|
defineConfig({
|
|
test: {
|
|
environment: 'jsdom',
|
|
exclude: [...configDefaults.exclude, 'e2e/**'],
|
|
root: fileURLToPath(new URL('./', import.meta.url)),
|
|
},
|
|
}),
|
|
)
|