forked from scout-off/scout-off-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.size-limit.json
More file actions
45 lines (45 loc) · 1 KB
/
Copy path.size-limit.json
File metadata and controls
45 lines (45 loc) · 1 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
[
{
"name": "Shared runtime chunks (framework + webpack + main)",
"path": [
".next/static/chunks/framework-*.js",
".next/static/chunks/webpack-*.js",
".next/static/chunks/main-*.js"
],
"limit": "250 kB",
"gzip": true
},
{
"name": "Home page JS",
"path": [
".next/static/chunks/app/[locale]/page-*.js",
".next/static/chunks/app/page-*.js"
],
"limit": "50 kB",
"gzip": true
},
{
"name": "Player dashboard JS",
"path": ".next/static/chunks/app/**/player/page-*.js",
"limit": "120 kB",
"gzip": true
},
{
"name": "Scout dashboard JS",
"path": ".next/static/chunks/app/**/scout/page-*.js",
"limit": "120 kB",
"gzip": true
},
{
"name": "Validator dashboard JS",
"path": ".next/static/chunks/app/**/validator/page-*.js",
"limit": "120 kB",
"gzip": true
},
{
"name": "Admin panel JS",
"path": ".next/static/chunks/app/**/admin/page-*.js",
"limit": "120 kB",
"gzip": true
}
]