Skip to content
Closed
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
7 changes: 7 additions & 0 deletions wrangler.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ name = "well-known-cache"
main = "workers/well-known-cache/src/index.ts"
compatibility_date = "2024-09-23"

# Esbuild size optimizations — minimize bundle for faster worker startup
minify = true
# Preserve names for stack traces in production debugging (set false for max minification)
# keep_names = false
# Source maps for debugging (disable in production for smaller output)
# source_maps = false

# Replace "yourdomain.com" with your actual domain before deploying.
routes = [
{ pattern = "*yourdomain.com/.well-known/*", zone_name = "yourdomain.com" }
Expand Down
Loading