dynamic import some components to make the bundle size smaller
All checks were successful
deploy / deploy (push) Successful in 54s

This commit is contained in:
Lee
2023-10-23 08:07:47 +01:00
parent b2c9ff412b
commit 86cfa7686f
7 changed files with 24 additions and 12 deletions

View File

@ -12,8 +12,8 @@ import {
HomeIcon,
UserIcon,
} from "@heroicons/react/20/solid";
import dynamic from "next/dynamic";
import { useRef } from "react";
import ReactCountryFlag from "react-country-flag";
import { toast } from "react-toastify";
import { useStore } from "zustand";
import Avatar from "../Avatar";
@ -21,6 +21,8 @@ import Card from "../Card";
import Label from "../Label";
import PlayerChart from "./PlayerChart";
const ReactCountryFlag = dynamic(() => import("react-country-flag"));
type PlayerInfoProps = {
playerData: ScoresaberPlayer;
};