app first commit
This commit is contained in:
parent
0e16d3e6be
commit
4441012687
45 changed files with 12987 additions and 0 deletions
18
app/vite.config.ts
Normal file
18
app/vite.config.ts
Normal file
|
@ -0,0 +1,18 @@
|
|||
/// <reference types="vitest" />
|
||||
|
||||
import legacy from '@vitejs/plugin-legacy'
|
||||
import react from '@vitejs/plugin-react'
|
||||
import { defineConfig } from 'vite'
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
react(),
|
||||
legacy()
|
||||
],
|
||||
test: {
|
||||
globals: true,
|
||||
environment: 'jsdom',
|
||||
setupFiles: './src/setupTests.ts',
|
||||
}
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue