moving v2 to top level

This commit is contained in:
2024-12-17 09:19:21 -07:00
parent 5f0b3554dc
commit 576ee02afb
468 changed files with 79 additions and 15430 deletions

17
vitest.config.ts Normal file
View File

@@ -0,0 +1,17 @@
import { loadEnvConfig } from "@next/env";
import { defineConfig } from "vitest/config";
import react from "@vitejs/plugin-react";
loadEnvConfig(process.cwd());
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": "/src",
},
},
test: {
environment: "jsdom",
},
});