From 332f567fed500aff47e727a5afba2308e658f370 Mon Sep 17 00:00:00 2001 From: POP12POP Date: Sat, 22 Feb 2025 13:45:33 +0200 Subject: [PATCH] Create wrtangler.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit / ├── package.json ├── wrangler.toml ├── src/ └── dist/ --- wrtangler.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 wrtangler.toml diff --git a/wrtangler.toml b/wrtangler.toml new file mode 100644 index 0000000..553912c --- /dev/null +++ b/wrtangler.toml @@ -0,0 +1,21 @@ +name = "n8n-app" +compatibility_date = "2024-02-22" + +[build] +command = "npm install && npm run build" + +[site] +bucket = "./dist" + +[build.upload] +format = "service-worker" + +[[kv_namespaces]] +binding = "N8N_KV" +preview_id = "your-preview-id" +id = "your-production-id" + +[env.production] +kv_namespaces = [ + { binding = "N8N_KV", id = "your-production-id" } +]