Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions web/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import type { Metadata } from "next";
import "./globals.css";

// The dashboard is an authenticated control plane, not a static document.
// Rendering it dynamically makes Next serve the HTML with private/no-store
// semantics, so a browser or intermediary cannot pin an old client bundle
// after a deployment. Hashed files under /_next/static remain cacheable.
export const dynamic = "force-dynamic";

export const metadata: Metadata = {
title: "ShellFleet",
description: "Manage systemd services and Docker workloads across your fleet from one terminal-flavored dashboard.",
Expand Down
Loading