import react from '@vitejs/plugin-react'; import dotenv from 'dotenv'; import tsconfigPaths from 'vite-tsconfig-paths'; import { defineConfig } from 'vitest/config'; dotenv.config(); export default defineConfig({ plugins: [tsconfigPaths(), react()], test: { environment: 'jsdom', env: { NEXT_PUBLIC_API_BASE_PATH: process.env.NEXT_PUBLIC_API_BASE_PATH }, }, });