feat: bootstrap multi-tenant storefront showcase

This commit is contained in:
2026-06-29 12:06:10 +01:00
commit 1c9e946464
11 changed files with 763 additions and 0 deletions

15
wrangler.jsonc Normal file
View File

@@ -0,0 +1,15 @@
{
"$schema": "./node_modules/wrangler/config-schema.json",
// Default name; each storefront overrides it at deploy time with
// `wrangler deploy --name <worker>` (see config/stores.mjs + scripts/deploy.mjs).
"name": "ecommerce-shops",
"compatibility_date": "2026-06-01",
// Assets-only Worker: no `main` script, just the static export in ./out.
"assets": {
"directory": "./out",
// Static export uses trailingSlash: true -> /about/index.html
"html_handling": "force-trailing-slash",
// next export emits 404.html
"not_found_handling": "404-page"
}
}