1 Commits

Author SHA1 Message Date
Julien Valverdé 440e23b80e Fix cache duration
Build / build (push) Successful in 55s
Lint / lint (push) Failing after 12s
2026-05-19 19:51:35 +02:00
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -11,7 +11,7 @@
"npm-check-updates": "^22.2.0",
"npm-sort": "^0.0.4",
"turbo": "^2.9.14",
"typescript": "^6.0.0",
"typescript": "^5.9.2",
},
},
"packages/common": {
@@ -917,7 +917,7 @@
"type-check": ["type-check@0.4.0", "", { "dependencies": { "prelude-ls": "^1.2.1" } }, "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="],
"typescript": ["typescript@6.0.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw=="],
"typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
"typescript-eslint": ["typescript-eslint@8.59.4", "", { "dependencies": { "@typescript-eslint/eslint-plugin": "8.59.4", "@typescript-eslint/parser": "8.59.4", "@typescript-eslint/typescript-estree": "8.59.4", "@typescript-eslint/utils": "8.59.4" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", "typescript": ">=4.8.4 <6.1.0" } }, "sha512-Rw6+44QNFaXtgHSjPy+Kw8hrJniMYzR85E9yLmOLcfZ91/rz+JXQbDTCmc6ccxMPY6K6PgAq26f0JCBfR7LIPQ=="],
+1 -1
View File
@@ -18,6 +18,6 @@
"npm-check-updates": "^22.2.0",
"npm-sort": "^0.0.4",
"turbo": "^2.9.14",
"typescript": "^6.0.0"
"typescript": "^5.9.2"
}
}
+1 -1
View File
@@ -32,7 +32,7 @@ const makeProductionWebappRoute = Effect.fnUntraced(function*(route: HttpRouter.
return yield* HttpServerResponse.setHeader(
yield* HttpServerResponse.file(exists ? source : path.join(dist, "index.html")),
"Cache-Control",
`public, max-age=${Duration.toSeconds("365 days")}, immutable`,
`public, max-age=${Duration.toSeconds("6 hours")}, immutable`,
)
}))
})