✅ Verified dev server running and responsive ✅ All pages load successfully (home, about, portfolio) ✅ All memoized components validated: - Skills sections with iconMap at module level - Experience with memoized handlers - Portfolio with React.memo optimization ✅ No console errors, animations smooth ✅ Code quality verified
18 lines
352 B
TypeScript
18 lines
352 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
import react from '@vitejs/plugin-react';
|
|
import path from 'path';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
environment: 'jsdom',
|
|
globals: true,
|
|
setupFiles: ['./vitest.setup.ts'],
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
});
|