-
-
Notifications
You must be signed in to change notification settings - Fork 812
/
Copy path.size-limit.js
47 lines (44 loc) · 1.04 KB
/
.size-limit.js
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
// Just a basic example for size limit with simple file preset
// @link https://github.com/ai/size-limit
let manifest;
try {
manifest = require('./.next/build-manifest.json');
} catch (e) {
throw new Error(
'Cannot find a NextJs build folder, did you forget to build ?'
);
}
const pages = manifest.pages;
const limitCfg = {
defaultSize: '120kb',
pages: {
'/': '200kb',
'/404': '120kb',
'/_app': '200kb',
'/_error': '120kb',
'/_monitor/sentry/csr-page': '120kb',
'/_monitor/sentry/ssr-page': '120kb',
'/admin': '120kb',
'/auth/login': '200kb',
'/home': '120kb',
},
};
const getPageLimits = () => {
let pageLimits = [];
for (const [uri, paths] of Object.entries(pages)) {
pageLimits.push({
name: `Page '${uri}'`,
limit: limitCfg.pages?.[uri] ?? limitCfg.defaultSize,
path: paths.map((p) => `.next/${p}`),
});
}
return pageLimits;
};
module.exports = [
...getPageLimits(),
// {
// name: 'CSS',
// path: ['.next/static/css/**/*.css'],
// limit: '10 kB',
// },
];