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 782c07d commit c24abefCopy full SHA for c24abef
packages/@apphosting/adapter-angular/src/utils.ts
@@ -177,7 +177,7 @@ function extractManifestOutput(output: string): string {
177
}
178
// Clean the raw json string by removing the "web:build:" prefixes for a Turbo build
179
const prefixRegex = /\n?web:build:/g;
180
- const cleanedOutput = output.substring(start, end + 1).replace(prefixRegex, '');
+ const cleanedOutput = output.substring(start, end + 1).replace(prefixRegex, "");
181
return stripAnsi(cleanedOutput);
182
183
0 commit comments