如何修改Next.js中的largePageDataBytes?

wnavrhmk  于 2022-10-01  发布在  其他
关注(0)|答案(1)|浏览(193)

我想更改largePageDataBytes,我知道这会降低性能。我在next.config.js中尝试了以下操作

/**
 * @type {import('next').NextConfig}
 */
const nextConfig = {
  /* config options here */
  //largePageDataBytes: 128 * 1000, // 128KB by default
  largePageDataBytes: 128 * 100000,
};

module.exports = nextConfig;

然后就得到了

warn - Invalid next.config.js options detected:

我在哪里以及如何更改largePageDataBytes?

whlutmcx

whlutmcx1#

根据代码,它目前预计在experimental属性中。

const nextConfig = {
  ...
  experimental: {
    largePageDataBytes: 128 * 100000,
  },
  ...
}

相关问题