diff --git a/packages/playground/blueprints/src/lib/v1/resources.ts b/packages/playground/blueprints/src/lib/v1/resources.ts index 7702283dca..13552a8ac5 100644 --- a/packages/playground/blueprints/src/lib/v1/resources.ts +++ b/packages/playground/blueprints/src/lib/v1/resources.ts @@ -388,7 +388,8 @@ export abstract class FetchResource extends Resource { throw new Error( `Could not download "${url}".\n\n` + `Confirm that the URL is correct, the server is reachable, and the file is` + - `actually served at that URL. Original error: \n ${e}` + `actually served at that URL. Original error: \n ${e}`, + { cause: e } ); } }