MOLLY

Results 2 comments of MOLLY

```javascript /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: false, } export default nextConfig; ``` This will solve your problem

if you are using next.js use dynamic imports like this. ```javascript const CandleChart = dynamic(() => import("components/charts/CandleChart"), { ssr: false, }); ```