More progress
This commit is contained in:
parent
3d8c60ee00
commit
de88224b30
19 changed files with 1249 additions and 61 deletions
|
@ -1,7 +1,12 @@
|
|||
import { defineConfig } from 'vite'
|
||||
import react from '@vitejs/plugin-react'
|
||||
import { defineConfig } from "vite"
|
||||
import react from "@vitejs/plugin-react"
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
plugins: [react()],
|
||||
test: {
|
||||
globals: true,
|
||||
environment: "jsdom",
|
||||
setupFiles: "./tests/setup.js"
|
||||
}
|
||||
})
|
||||
|
|
Reference in a new issue