Skip to content

Commit

Permalink
update build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ranitasahaa1230 committed Sep 9, 2024
1 parent 6678a46 commit d4151d1
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
import { fileURLToPath, URL } from 'node:url';
import { fileURLToPath, URL } from "node:url"

import react from '@vitejs/plugin-react';
import { defineConfig } from 'vitest/config';
import react from "@vitejs/plugin-react"
import { defineConfig } from "vitest/config"

export default defineConfig({
plugins: [react()],
test: {
environment: 'jsdom',
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
plugins: [react()],
test: {
environment: "jsdom",
},
},
});

resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
})

0 comments on commit d4151d1

Please sign in to comment.