We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecd2f33 commit 9673134Copy full SHA for 9673134
src/manifest.ts
@@ -164,7 +164,9 @@ export class Manifest {
164
165
get links(): ManifestLinks {
166
// TODO: Allow customizing the staging URL using `fileset.yaml` configuration.
167
- const hostnameSuffix = `fileset-dot-${this.googleCloudProject}.appspot.com`;
+ const hostnameSuffix =
168
+ process.env.FILESET_BASE_URL ||
169
+ `fileset-dot-${this.googleCloudProject}.appspot.com`;
170
const buildLink =
171
this.site === 'default'
172
? `https://${this.shortSha}-dot-${hostnameSuffix}`
0 commit comments