mirror of
https://github.com/cloudflare/vinext.git
synced 2026-09-14 19:04:59 +08:00
c1a78a73d8
* fix(build): support trailing-slash static exports * fix(ci): initialize static export preview routes * fix(build): emit trailing-slash 404 fallback * docs(build): clarify static export page count
15 lines
498 B
JSON
15 lines
498 B
JSON
{
|
|
"$schema": "../node_modules/wrangler/config-schema.json",
|
|
"name": "static-export",
|
|
// Newest date supported by the repository-pinned Wrangler/workerd.
|
|
"compatibility_date": "2026-04-08",
|
|
"preview_urls": true,
|
|
"assets": {
|
|
// This is the complete deployable artifact. There is deliberately no
|
|
// Worker entry point that could hide a missing static route.
|
|
"directory": "../dist/client",
|
|
"html_handling": "force-trailing-slash",
|
|
"not_found_handling": "404-page"
|
|
}
|
|
}
|