2025-10-23 11:02:41 -06:00
|
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
|
import react from "@vitejs/plugin-react-swc";
|
|
|
|
|
import path from "path";
|
2025-09-30 17:28:31 -07:00
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [react()],
|
|
|
|
|
test: {
|
|
|
|
|
passWithNoTests: true,
|
|
|
|
|
},
|
|
|
|
|
resolve: {
|
|
|
|
|
alias: {
|
2025-10-23 11:02:41 -06:00
|
|
|
"@": path.resolve(__dirname, "./src"),
|
2025-09-30 17:28:31 -07:00
|
|
|
},
|
|
|
|
|
},
|
2025-10-23 11:02:41 -06:00
|
|
|
});
|