File tree 4 files changed +12
-134
lines changed
4 files changed +12
-134
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- // Import the polyfill first, before any other imports
2
- import './lib/react-shim' ;
3
-
4
1
import { StrictMode } from 'react' ;
5
2
import { createRoot } from 'react-dom/client' ;
6
3
import './index.css' ;
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ import { defineConfig } from 'vite';
2
2
import react from '@vitejs/plugin-react' ;
3
3
import path from 'path' ;
4
4
5
- // Polyfill plugin removed as we no longer use Radix UI
6
-
7
5
export default defineConfig ( {
8
6
base : '/' ,
9
7
plugins : [ react ( ) ] ,
@@ -24,22 +22,26 @@ export default defineConfig({
24
22
// More granular chunking for node_modules
25
23
if ( id . includes ( 'node_modules' ) ) {
26
24
// 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
+ ) {
30
30
return 'vendor-react' ;
31
31
}
32
-
32
+
33
33
// 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
+ ) {
36
38
return 'vendor-ui' ;
37
39
}
38
-
40
+
39
41
// All other third-party dependencies
40
42
return 'vendor-other' ;
41
43
}
42
-
44
+
43
45
// Group all auth-related code together
44
46
if ( id . includes ( '/src/api/' ) || id . includes ( '/src/context/Auth' ) ) {
45
47
return 'auth' ;
You can’t perform that action at this time.
0 commit comments