···226226 customElements.define("load-dong", LoadDong);
227227 </script>
228228229229+ <h1>
230230+ Currently this does not work with chrome or other chromium based browsers
231231+ (see <a
232232+ href="https://developer.mozilla.org/en-US/docs/Web/API/Blob/bytes#browser_compatibility"
233233+ >here</a
234234+ > and <a
235235+ href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/toBase6400"
236236+ >here</a
237237+ >.) Please use firefox, a gecko based browser, safari, or a webkit based
238238+ browser. (iOs has no issues with this site regardless of browser)<br>
239239+ Contact me if chrome starts working or you encounter any issues (up to u to figure out how)
240240+ </h1>
241241+229242 <create-dong></create-dong>
230243 <load-dong></load-dong>
231244
+86
wrangler.toml
···11+#:schema node_modules/wrangler/config-schema.json
22+name = "dong"
33+compatibility_date = "2025-01-09"
44+compatibility_flags = ["nodejs_compat"]
55+pages_build_output_dir = "./dist"
66+77+# Automatically place your workloads in an optimal location to minimize latency.
88+# If you are running back-end logic in a Pages Function, running it closer to your back-end infrastructure
99+# rather than the end user may result in better performance.
1010+# Docs: https://developers.cloudflare.com/pages/functions/smart-placement/#smart-placement
1111+# [placement]
1212+# mode = "smart"
1313+1414+# Variable bindings. These are arbitrary, plaintext strings (similar to environment variables)
1515+# Docs:
1616+# - https://developers.cloudflare.com/pages/functions/bindings/#environment-variables
1717+# Note: Use secrets to store sensitive data.
1818+# - https://developers.cloudflare.com/pages/functions/bindings/#secrets
1919+# [vars]
2020+# MY_VARIABLE = "production_value"
2121+2222+# Bind the Workers AI model catalog. Run machine learning models, powered by serverless GPUs, on Cloudflare’s global network
2323+# Docs: https://developers.cloudflare.com/pages/functions/bindings/#workers-ai
2424+# [ai]
2525+# binding = "AI"
2626+2727+# Bind a D1 database. D1 is Cloudflare’s native serverless SQL database.
2828+# Docs: https://developers.cloudflare.com/pages/functions/bindings/#d1-databases
2929+# [[d1_databases]]
3030+# binding = "MY_DB"
3131+# database_name = "my-database"
3232+# database_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
3333+3434+# Bind a Durable Object. Durable objects are a scale-to-zero compute primitive based on the actor model.
3535+# Durable Objects can live for as long as needed. Use these when you need a long-running "server", such as in realtime apps.
3636+# Docs: https://developers.cloudflare.com/workers/runtime-apis/durable-objects
3737+# [[durable_objects.bindings]]
3838+# name = "MY_DURABLE_OBJECT"
3939+# class_name = "MyDurableObject"
4040+# script_name = 'my-durable-object'
4141+4242+# Bind a KV Namespace. Use KV as persistent storage for small key-value pairs.
4343+# Docs: https://developers.cloudflare.com/pages/functions/bindings/#kv-namespaces
4444+# [[kv_namespaces]]
4545+# binding = "MY_KV_NAMESPACE"
4646+# id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
4747+4848+# Bind a Queue producer. Use this binding to schedule an arbitrary task that may be processed later by a Queue consumer.
4949+# Docs: https://developers.cloudflare.com/pages/functions/bindings/#queue-producers
5050+# [[queues.producers]]
5151+# binding = "MY_QUEUE"
5252+# queue = "my-queue"
5353+5454+# Bind an R2 Bucket. Use R2 to store arbitrarily large blobs of data, such as files.
5555+# Docs: https://developers.cloudflare.com/pages/functions/bindings/#r2-buckets
5656+# [[r2_buckets]]
5757+# binding = "MY_BUCKET"
5858+# bucket_name = "my-bucket"
5959+6060+# Bind another Worker service. Use this binding to call another Worker without network overhead.
6161+# Docs: https://developers.cloudflare.com/pages/functions/bindings/#service-bindings
6262+# [[services]]
6363+# binding = "MY_SERVICE"
6464+# service = "my-service"
6565+6666+# To use different bindings for preview and production environments, follow the examples below.
6767+# When using environment-specific overrides for bindings, ALL bindings must be specified on a per-environment basis.
6868+# Docs: https://developers.cloudflare.com/pages/functions/wrangler-configuration#environment-specific-overrides
6969+7070+######## PREVIEW environment config ########
7171+7272+# [env.preview.vars]
7373+# API_KEY = "xyz789"
7474+7575+# [[env.preview.kv_namespaces]]
7676+# binding = "MY_KV_NAMESPACE"
7777+# id = "<PREVIEW_NAMESPACE_ID>"
7878+7979+######## PRODUCTION environment config ########
8080+8181+# [env.production.vars]
8282+# API_KEY = "abc123"
8383+8484+# [[env.production.kv_namespaces]]
8585+# binding = "MY_KV_NAMESPACE"
8686+# id = "<PRODUCTION_NAMESPACE_ID>"