Skip to content

Commit 9673134

Browse files
committed
fix: use base url for links
1 parent ecd2f33 commit 9673134

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/manifest.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,9 @@ export class Manifest {
164164

165165
get links(): ManifestLinks {
166166
// TODO: Allow customizing the staging URL using `fileset.yaml` configuration.
167-
const hostnameSuffix = `fileset-dot-${this.googleCloudProject}.appspot.com`;
167+
const hostnameSuffix =
168+
process.env.FILESET_BASE_URL ||
169+
`fileset-dot-${this.googleCloudProject}.appspot.com`;
168170
const buildLink =
169171
this.site === 'default'
170172
? `https://${this.shortSha}-dot-${hostnameSuffix}`

0 commit comments

Comments
 (0)