我想更改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?
1条答案
按热度按时间whlutmcx1#
根据代码,它目前预计在
experimental
属性中。