an npmx inspired game for PICO-8 npicomx.vinnymac.dev
games pico-8 adventure npmx
3

Configure Feed

Select the types of activity you want to include in your feed.

fix wrangler: account_id unsupported in Pages toml, pass via env

Pages wrangler.toml doesn't accept account_id (Workers-only key).
Pass CLOUDFLARE_ACCOUNT_ID inline in the Makefile target instead.

Vincent Taverna (Jun 10, 2026, 7:49 AM UTC) ba281f52 2a698ba0

+1 -2
+1 -1
Makefile
··· 96 96 97 97 .PHONY: ci-deploy 98 98 ci-deploy: ci-dist ## Deploy committed artifacts to Cloudflare Pages (CI-safe, no pico8 needed) 99 - npx wrangler pages deploy $(DIST) --project-name npicomx --commit-dirty=true 99 + CLOUDFLARE_ACCOUNT_ID=ebbd354a5e5728e183b95c92fbcfb770 npx wrangler pages deploy $(DIST) --project-name npicomx --commit-dirty=true 100 100 101 101 # --- help / housekeeping ----------------------------------------------------- 102 102 .PHONY: help
-1
wrangler.toml
··· 1 1 name = "npicomx" 2 - account_id = "ebbd354a5e5728e183b95c92fbcfb770" 3 2 pages_build_output_dir = "dist"