Add dashboard prewarm worker and cache visibility

This commit is contained in:
2569718930@qq.com
2026-04-08 06:53:49 +08:00
parent 0bb3b573e1
commit c3da29c09c
21 changed files with 1120 additions and 149 deletions
@@ -1,6 +1,7 @@
"use client";
import dynamic from "next/dynamic";
import { DashboardShellSkeleton } from "@/components/dashboard/DashboardShellSkeleton";
const PolyWeatherDashboard = dynamic(
() =>
@@ -9,6 +10,7 @@ const PolyWeatherDashboard = dynamic(
),
{
ssr: false,
loading: () => <DashboardShellSkeleton />,
},
);