diff --git a/lib/dev-container.ts b/lib/dev-container.ts index 2d3e26ed..0b939bef 100644 --- a/lib/dev-container.ts +++ b/lib/dev-container.ts @@ -159,7 +159,7 @@ function renderDevCompose(projectSlug: string, projectId: string): string { const port = PREVIEW_BASE_PORT + i; const router = `vibn-dev-${projectSlug}-${i}`; const host = `preview-${i}-${projectSlug}-${token}.${PREVIEW_DOMAIN_BASE_RAW}`; - traefikLabels.push(`"traefik.http.routers.${router}.rule=Host(\\\`${host}\\\`)"`); + traefikLabels.push(`"traefik.http.routers.${router}.rule=Host(\`${host}\`)"`); traefikLabels.push(`"traefik.http.routers.${router}.entrypoints=https"`); traefikLabels.push(`"traefik.http.routers.${router}.tls=true"`); traefikLabels.push(`"traefik.http.routers.${router}.tls.certresolver=letsencrypt"`);