加载笔记内容...
加载笔记内容...
使用 next/dynamic 引入大体积组件,并设置 ssr: false 解决 your plan size limit is 1 MB 的问题。
修改 next.config.js
1webpack(c){
2 // due to https://github.com/vercel/next.js/pull/59246, edge runtime bundle next/dynamic{ssr:false} in the server bundle,
3 // which will cause the server bundle to be too large.
4 // It makes Edge Function size larger than 1MB,
5 // so we need to modify the webpack config to make it work
6 c.module.rules.forEach((rule) => {
7 if (JSON.stringify(rule)?.includes("next-swc-loader")) {
8 rule.oneOf.forEach(({ use }) => {
9 if (use.loader === "next-swc-loader") {
10 // eslint-disable-next-line no-param-reassign
11 use.options.esm = true;
12 }
13 });
14 }
15 });
16}
Webpack 的 rules 里面 test 居然支持 函数的写法,以前只知道正则的写法。