Files

16 lines
299 B
TypeScript
Raw Permalink Normal View History

import { defineConfig } from "vitest/config";
import react from "@vitejs/plugin-react-swc";
import path from "path";
export default defineConfig({
plugins: [react()],
test: {
passWithNoTests: true,
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});