diff --git a/wrangler.toml b/wrangler.toml index 3c7ca94..6dd9be6 100644 --- a/wrangler.toml +++ b/wrangler.toml @@ -3,7 +3,7 @@ main = "src/worker.ts" send_metrics = false compatibility_date = "2024-09-23" routes = [ - { pattern = "dev.testnet.polykey.com", custom_domain = false }, + { pattern = "dev.testnet.polykey.com", custom_domain = true }, ] [site] bucket = "./public" @@ -12,10 +12,12 @@ routes = [ name = "polykey-network-dashboard-staging" routes = [ { pattern = "testnet.polykey.com", custom_domain = false }, + { pattern = "testnet.polykey.com/*", custom_domain = false }, ] [env.master] name = "polykey-network-dashboard" routes = [ { pattern = "mainnet.polykey.com", custom_domain = false }, + { pattern = "mainnet.polykey.com/*", custom_domain = false }, ]