
* Add products feed app from another repo * Improve codebase * Create sweet-ears-tease.md * Apply cr changes
13 lines
299 B
TypeScript
13 lines
299 B
TypeScript
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
passWithNoTests: true,
|
|
environment: "jsdom",
|
|
setupFiles: "./src/setup-tests.ts",
|
|
css: false,
|
|
},
|
|
});
|