Active Tenants
3 Stores
Wildcard routing ready
Domain Health
100% Verified
*.bayinlabs.bond
SSL Provisioning
Auto Wildcard
Zero manual cert config
Edge Rewrite Speed
~12 ms
Next.js Middleware
Managed Tenant Storefronts
Every tenant listed below is automatically served via wildcard subdomain matching.
| Store / Brand | Assigned Subdomain | Next.js Internal Route | Status | Actions |
|---|---|---|---|---|
Sneaker Lab Yangon Footwear & Fashion | sneakers.bayinlabs.bond | /store/sneakers | Active & Live | View Store |
Mogok Roast & Co. Specialty Coffee & Brews | coffee.bayinlabs.bond | /store/coffee | Active & Live | View Store |
Bayin Tech Minimalist Electronics & Workspaces | techgear.bayinlabs.bond | /store/techgear | Active & Live | View Store |
How dash.bayinlabs.bond is isolated from Storefronts
Next.js middleware.ts checks the req.headers.get('host'). Because "dash" is a reserved platform subdomain, requests to dash.bayinlabs.bond bypass the tenant store resolver and are cleanly rewritten directly to /dash/*.
// In middleware.ts:
if (host === 'dash.bayinlabs.bond') {
return NextResponse.rewrite(new URL(`/dash${url.pathname}`, req.url));
}
if (host === 'dash.bayinlabs.bond') {
return NextResponse.rewrite(new URL(`/dash${url.pathname}`, req.url));
}