~ajhalili2006's personal website, built with Zensical (successor of Material for Mkdocs) andreijiroh.dev
mkdocs-material zensical website cf-pages
1

Configure Feed

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

chore: set up seperate config for Zensical builds

todo: swap account IDs later

Andrei Jiroh Halili (May 18, 2026, 9:44 AM UTC) cac6eb80 4233a303

+30 -7
+1
package.json
··· 7 7 "dev": "wrangler dev --port 8000 --live-reload", 8 8 "deploy": "npm run deploy:cf", 9 9 "deploy:cf": "wrangler deploy", 10 + "deploy:cf-next": "wrangler deploy --config wrangler-next.jsonc", 10 11 "docker:ci": "DOCKER_BUILDKIT=1 docker build -t dock.mau.dev/andreijiroh-dev/website/build-ci:localdev ./docker" 11 12 }, 12 13 "repository": {
+23
wrangler-next.jsonc
··· 1 + { 2 + "$schema": "https://raw.githubusercontent.com/recaptimedev-labs/workers-config-schema/refs/heads/main/config-schema.json", 3 + "name": "website-next", 4 + "account_id": "cf0bd808c6a294fd8c4d8f6d2cdeca05", 5 + "compatibility_date": "2025-12-10", 6 + "assets": { 7 + "directory": "./public", 8 + "html_handling": "auto-trailing-slash", 9 + "not_found_handling": "404-page", 10 + "run_worker_first": false, 11 + }, 12 + "build": { 13 + "command": "bash ./bin/build.sh", 14 + }, 15 + "workers_dev": true, 16 + "preview_urls": true, 17 + "routes": [ 18 + { 19 + "custom_domain": true, 20 + "pattern": "site.labs.andreijiroh.dev", 21 + }, 22 + ], 23 + }
+6 -7
wrangler.jsonc
··· 2 2 "$schema": "https://raw.githubusercontent.com/recaptimedev-labs/workers-config-schema/refs/heads/main/config-schema.json", 3 3 "name": "website", 4 4 "account_id": "cf0bd808c6a294fd8c4d8f6d2cdeca05", 5 - "compatibility_date": "2025-06-01", 5 + "compatibility_date": "2025-12-10", 6 6 "assets": { 7 7 "directory": "./public", 8 8 "html_handling": "auto-trailing-slash", 9 9 "not_found_handling": "404-page", 10 - "run_worker_first": false 10 + "run_worker_first": false, 11 11 }, 12 12 "build": { 13 13 "command": "bash ./bin/build.sh", 14 - 15 14 }, 16 15 "workers_dev": true, 17 16 "preview_urls": true, 18 17 "routes": [ 19 18 { 20 - "custom_domain": true, 21 - "pattern": "andreijiroh.dev" 22 - } 23 - ] 19 + "custom_domain": true, 20 + "pattern": "andreijiroh.dev", 21 + }, 22 + ], 24 23 }