Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f87e110359 | ||
|
|
f1b1329c1b | ||
|
|
88d5d43448 | ||
|
|
4745af3639 |
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "app-ts",
|
"name": "app-ts",
|
||||||
"version": "2.4.7",
|
"version": "2.4.9",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "app-ts",
|
"name": "app-ts",
|
||||||
"version": "2.4.7",
|
"version": "2.4.9",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@anthropic-ai/sdk": "^0.102.0",
|
"@anthropic-ai/sdk": "^0.102.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "app-ts",
|
"name": "app-ts",
|
||||||
"version": "2.4.7",
|
"version": "2.4.9",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "dist/server.js",
|
"main": "dist/server.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
16
src/main.tsx
16
src/main.tsx
@@ -4,6 +4,22 @@ import { BrowserRouter } from "react-router-dom";
|
|||||||
import App from "./App";
|
import App from "./App";
|
||||||
import { ThemeProvider } from "./context/ThemeContext";
|
import { ThemeProvider } from "./context/ThemeContext";
|
||||||
|
|
||||||
|
// Deploy-skew recovery (official Vite mechanism): after a release the old
|
||||||
|
// hashed chunks are deleted, so a tab still running the previous build fails
|
||||||
|
// its next lazy-page import. Vite emits `vite:preloadError` for exactly this —
|
||||||
|
// swallow the error and reload once, which loads the fresh index.html and new
|
||||||
|
// chunk names. The timestamp guard prevents a reload loop when a chunk is
|
||||||
|
// genuinely unloadable (e.g. offline): a second failure within 10 s falls
|
||||||
|
// through to the normal error path.
|
||||||
|
window.addEventListener("vite:preloadError", (event) => {
|
||||||
|
const KEY = "vite-preload-reloaded-at";
|
||||||
|
const last = Number(sessionStorage.getItem(KEY) || 0);
|
||||||
|
if (Date.now() - last < 10_000) return;
|
||||||
|
sessionStorage.setItem(KEY, String(Date.now()));
|
||||||
|
event.preventDefault();
|
||||||
|
window.location.reload();
|
||||||
|
});
|
||||||
|
|
||||||
ReactDOM.createRoot(document.getElementById("root")!).render(
|
ReactDOM.createRoot(document.getElementById("root")!).render(
|
||||||
<React.StrictMode>
|
<React.StrictMode>
|
||||||
<BrowserRouter
|
<BrowserRouter
|
||||||
|
|||||||
@@ -206,12 +206,35 @@ async function start() {
|
|||||||
root: path.join(__dirname, "..", "dist-client"),
|
root: path.join(__dirname, "..", "dist-client"),
|
||||||
prefix: "/",
|
prefix: "/",
|
||||||
wildcard: false,
|
wildcard: false,
|
||||||
|
// The plugin's own Cache-Control management must be OFF or it
|
||||||
|
// overwrites the setHeaders values below with "public, max-age=0"
|
||||||
|
// (README: "To provide a custom Cache-Control header, set this option
|
||||||
|
// to false"). ETags stay on, so no-cache still revalidates cheaply.
|
||||||
|
cacheControl: false,
|
||||||
|
// Deploy-skew caching contract (per the Vite deploy guide):
|
||||||
|
// - /assets/* names are content-hashed → safe to cache forever
|
||||||
|
// (a changed file always gets a NEW name, so "immutable" is correct).
|
||||||
|
// - index.html (and any non-hashed file) must always be revalidated,
|
||||||
|
// otherwise a cached copy keeps referencing deleted old chunks.
|
||||||
|
setHeaders: (res, filePath) => {
|
||||||
|
if (filePath.includes(`${path.sep}assets${path.sep}`)) {
|
||||||
|
res.setHeader("Cache-Control", "public, max-age=31536000, immutable");
|
||||||
|
} else {
|
||||||
|
res.setHeader("Cache-Control", "no-cache");
|
||||||
|
}
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
app.setNotFoundHandler((request, reply) => {
|
app.setNotFoundHandler((request, reply) => {
|
||||||
if (request.url.startsWith("/api/")) {
|
if (request.url.startsWith("/api/")) {
|
||||||
return reply.status(404).send({ success: false, error: "Not found" });
|
return reply.status(404).send({ success: false, error: "Not found" });
|
||||||
}
|
}
|
||||||
|
// A missing hashed asset (old chunk after a deploy) must 404, NOT get
|
||||||
|
// the SPA index.html fallback — HTML-as-JS masks the failure and breaks
|
||||||
|
// the client's vite:preloadError reload recovery.
|
||||||
|
if (request.url.startsWith("/assets/")) {
|
||||||
|
return reply.status(404).send();
|
||||||
|
}
|
||||||
return reply.sendFile("index.html");
|
return reply.sendFile("index.html");
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user