Initial Commit

This commit is contained in:
2026-09-16 17:22:14 +09:00
commit 858ee9e9da
335 changed files with 123898 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import path from "node:path"
import react from "@vitejs/plugin-react"
import { defineConfig } from "vitest/config"
export default defineConfig({
plugins: [react()],
resolve: {
alias: { "@": path.resolve(__dirname, "./src") },
},
test: {
globals: true,
environment: "jsdom",
setupFiles: ["./src/test/setup.ts"],
typecheck: { tsconfig: "./tsconfig.test.json" },
include: ["src/**/*.test.{ts,tsx}"],
env: { VITE_API_BASE_URL: "http://localhost:8001/api/v1" },
},
})