next.js服务端渲染引入Highcharts报Cannot read property 'parts/Globals.js' of undefined

没用next.js,在react使用写法:

import Highcharts from 'highcharts';
import highcharts3d from 'highcharts/highcharts-3d'
 highcharts3d(Highcharts);

服务器端按照上述的写法会报

Cannot read property 'parts/Globals.js' of undefined

在next.js服务端渲染正确写法:

import Highcharts from 'highcharts';
import highcharts3d from 'highcharts/highcharts-3d'
if (typeof Highcharts === 'object') {
  highcharts3d(Highcharts);
}
发布了46 篇原创文章 · 获赞 8 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/yuanqi3131/article/details/103145754