Files
mb-grid-solutions.com/vitest.config.mts
Marc Mintel 8d547c559e
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 4s
Build & Deploy / 🧪 QA (push) Failing after 42s
Build & Deploy / 🏗️ Build (push) Failing after 2m14s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🩺 Health Check (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s
chore: standardize
2026-02-11 11:05:37 +01:00

15 lines
381 B
TypeScript

import { defineConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
test: {
environment: 'happy-dom',
globals: true,
alias: {
'next/server': 'next/dist/server/web/exports/next-server.js',
},
exclude: ['**/node_modules/**', '**/.next/**'],
},
});