Skip to content

Commit e66f3dc

Browse files
committed
refact: removed polyfill and react-shim wrappers
1 parent b03e629 commit e66f3dc

File tree

4 files changed

+12
-134
lines changed

4 files changed

+12
-134
lines changed

src/lib/react-shim.ts

-68
This file was deleted.

src/lib/utils/react-polyfill.ts

-53
This file was deleted.

src/main.tsx

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// Import the polyfill first, before any other imports
2-
import './lib/react-shim';
3-
41
import { StrictMode } from 'react';
52
import { createRoot } from 'react-dom/client';
63
import './index.css';

vite.config.ts

+12-10
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import { defineConfig } from 'vite';
22
import react from '@vitejs/plugin-react';
33
import path from 'path';
44

5-
// Polyfill plugin removed as we no longer use Radix UI
6-
75
export default defineConfig({
86
base: '/',
97
plugins: [react()],
@@ -24,22 +22,26 @@ export default defineConfig({
2422
// More granular chunking for node_modules
2523
if (id.includes('node_modules')) {
2624
// Split React and related packages into a separate chunk
27-
if (id.includes('react') ||
28-
id.includes('scheduler') ||
29-
id.includes('prop-types')) {
25+
if (
26+
id.includes('react') ||
27+
id.includes('scheduler') ||
28+
id.includes('prop-types')
29+
) {
3030
return 'vendor-react';
3131
}
32-
32+
3333
// UI libraries
34-
if (id.includes('class-variance-authority') ||
35-
id.includes('lucide')) {
34+
if (
35+
id.includes('class-variance-authority') ||
36+
id.includes('lucide')
37+
) {
3638
return 'vendor-ui';
3739
}
38-
40+
3941
// All other third-party dependencies
4042
return 'vendor-other';
4143
}
42-
44+
4345
// Group all auth-related code together
4446
if (id.includes('/src/api/') || id.includes('/src/context/Auth')) {
4547
return 'auth';

0 commit comments

Comments
 (0)