mirror of
https://github.com/mileswolfallen2/miles-web.git
synced 2026-09-08 11:23:17 +00:00
15 lines
602 B
JSON
15 lines
602 B
JSON
{
|
|
// Cloudflare Workers Static Assets configuration.
|
|
// Deploys this static portfolio and serves a custom 404 page.
|
|
"$schema": "https://raw.githubusercontent.com/cloudflare/workers-sdk/main/packages/wrangler/config-schema.json",
|
|
"name": "miles-web",
|
|
// Purely static site: no Worker script is needed.
|
|
"compatibility_date": "2026-08-24",
|
|
"assets": {
|
|
// The directory holding the static site. 404.html lives here,
|
|
// so the built-in 404-page handling below will pick it up.
|
|
"directory": ".",
|
|
"not_found_handling": "404-page",
|
|
"html_handling": "auto-trailing-slash"
|
|
}
|
|
} |