Hey guys, First of all, thanks for making this super helpful library! I am currently working on a NextJS and have implemented ChartJS v4.0.1. All works well, but when I want to install the annotation plugin and follow the steps of https://www.chartjs.org/chartjs-plugin-annotation/latest/guide/integration.html I get the following error: <img width="1005" alt="Schermafbeelding 2022-12-01 om 11 25 58" src="https://user-images.githubusercontent.com/108794729/205028962-1d632042-5578-4105-b123-6c157f357130.png"> My React component is: (only relevant is shown) ``` import {useEffect, useState} from "react"; import {BarElement, CategoryScale, Chart as ChartJS, Legend, LinearScale, Title, Tooltip} from 'chart.js'; import Annotation from 'chartjs-plugin-annotation'; import {Bar} from 'react-chartjs-2'; ChartJS.register( CategoryScale, LinearScale, BarElement, Title, Tooltip, Legend, Annotation, ); ......... ``` Do you guys have any idea how to solve this? Is it an issue because of ChartJS v4? Thanks a lot! Cheers, Ferre