-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptimization.config.js
More file actions
263 lines (248 loc) · 5.71 KB
/
optimization.config.js
File metadata and controls
263 lines (248 loc) · 5.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/**
* Comprehensive optimization configuration for the ML Portfolio
*/
export const optimizationConfig = {
// Bundle optimization settings
bundle: {
// Target bundle sizes (in KB)
targets: {
js: {
main: 250, // Main application bundle
vendor: 500, // Vendor libraries bundle
chunks: 100, // Individual route chunks
},
css: {
main: 50, // Main CSS bundle
components: 25, // Component-specific CSS
},
images: {
hero: 200, // Hero section images
thumbnails: 50, // Thumbnail images
icons: 10, // Icon files
},
},
// Code splitting configuration
splitting: {
vendor: ['react', 'react-dom', 'react-router-dom'],
ui: ['@radix-ui/react-dialog', '@radix-ui/react-dropdown-menu', '@radix-ui/react-toast'],
ml: ['@huggingface/transformers'],
supabase: ['@supabase/supabase-js', '@tanstack/react-query'],
},
// Tree shaking configuration
treeShaking: {
enabled: true,
sideEffects: false,
unusedExports: true,
},
},
// Image optimization settings
images: {
formats: {
modern: ['avif', 'webp'],
fallback: ['jpeg', 'png'],
},
quality: {
high: 90,
medium: 80,
low: 60,
},
sizes: {
hero: [1920, 1280, 640],
card: [800, 600, 400],
thumbnail: [300, 200, 150],
avatar: [200, 150, 100],
},
lazy: {
enabled: true,
threshold: '50px',
placeholder: 'blur',
},
},
// CSS optimization settings
css: {
purge: {
enabled: true,
safelist: [
// Always keep these classes
'sr-only',
'focus-visible',
'dark',
'light',
/^animate-/,
/^transition-/,
],
blocklist: [
// Remove these classes
/^debug-/,
/^test-/,
],
},
critical: {
enabled: true,
inline: true,
extract: true,
dimensions: [
{ width: 1920, height: 1080 }, // Desktop
{ width: 1366, height: 768 }, // Laptop
{ width: 768, height: 1024 }, // Tablet
{ width: 375, height: 667 }, // Mobile
],
},
minification: {
enabled: true,
removeComments: true,
removeUnusedRules: true,
mergeRules: true,
},
},
// Performance optimization settings
performance: {
// Core Web Vitals targets
vitals: {
lcp: 2500, // Largest Contentful Paint (ms)
fid: 100, // First Input Delay (ms)
cls: 0.1, // Cumulative Layout Shift
fcp: 1800, // First Contentful Paint (ms)
ttfb: 800, // Time to First Byte (ms)
},
// Resource hints
preload: [
'/avatar.png',
'/placeholder.svg',
],
prefetch: [
// Routes to prefetch
'/about',
'/projects',
],
preconnect: [
'https://fonts.googleapis.com',
'https://fonts.gstatic.com',
],
// Lazy loading configuration
lazyLoading: {
images: true,
components: true,
routes: true,
threshold: 0.1,
rootMargin: '50px',
},
},
// Service Worker configuration
serviceWorker: {
enabled: true,
scope: '/',
caching: {
strategies: {
static: 'cache-first',
api: 'network-first',
images: 'cache-first',
documents: 'network-first',
},
maxAge: {
static: 30 * 24 * 60 * 60 * 1000, // 30 days
api: 5 * 60 * 1000, // 5 minutes
images: 7 * 24 * 60 * 60 * 1000, // 7 days
documents: 24 * 60 * 60 * 1000, // 24 hours
},
},
offline: {
enabled: true,
fallbacks: {
document: '/index.html',
image: '/placeholder.svg',
font: null,
},
},
},
// Build optimization settings
build: {
target: 'es2020',
minify: 'terser',
sourcemap: false, // Disable in production
rollup: {
treeshake: {
moduleSideEffects: false,
propertyReadSideEffects: false,
unknownGlobalSideEffects: false,
},
},
terser: {
compress: {
drop_console: true,
drop_debugger: true,
pure_funcs: ['console.log', 'console.info'],
passes: 2,
},
mangle: {
safari10: true,
},
format: {
comments: false,
},
},
},
// Development optimization settings
development: {
hmr: true,
sourcemap: true,
optimization: false,
bundleAnalyzer: false,
},
// Monitoring and analytics
monitoring: {
performance: {
enabled: true,
sampleRate: 1.0, // 100% in development, reduce in production
reportInterval: 30000, // 30 seconds
},
errors: {
enabled: true,
captureUnhandledRejections: true,
captureConsoleErrors: true,
},
analytics: {
enabled: false, // Enable with your analytics service
trackingId: null,
events: {
pageViews: true,
interactions: true,
performance: true,
errors: true,
},
},
},
// Accessibility optimization
accessibility: {
focusManagement: true,
screenReaderSupport: true,
keyboardNavigation: true,
colorContrast: {
level: 'AA',
largeText: 3.0,
normalText: 4.5,
},
reducedMotion: {
respectPreference: true,
fallbackAnimations: true,
},
},
// SEO optimization
seo: {
meta: {
generateSitemap: true,
generateRobots: true,
structuredData: true,
},
prerendering: {
enabled: false, // Enable for static generation
routes: [
'/',
'/about',
'/projects',
'/blog',
],
},
},
};
export default optimizationConfig;