From 40aa057909cf96985881074e0a7a66cbf0f92eab Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Mon, 30 Oct 2023 18:09:34 -0400 Subject: [PATCH] Update wrangler.example.toml --- wrangler.example.toml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/wrangler.example.toml b/wrangler.example.toml index 3df432e..6def706 100644 --- a/wrangler.example.toml +++ b/wrangler.example.toml @@ -3,15 +3,16 @@ account_id = "[CLOUDFLARE_ACCOUNT_ID]" main = "./dist/worker.js" compatibility_date = "2023-08-15" send_metrics = false -services = [ - { binding = "TwitterProxy", service = "elongator" } -] + +# Remove this if not using Cloudflare Analytics Engine analytics_engine_datasets = [ { binding = "AnalyticsEngine" } ] -[build] -command = "npm run build" +# Remove this if not using elongator account proxying +services = [ + { binding = "TwitterProxy", service = "elongator" } +] -[miniflare.globals] -TEST = "true" # Will have unicode character errors in headers if not set to true and running unit tests \ No newline at end of file +[build] +command = "npm run build" \ No newline at end of file