DF0064: Remote Assets Materialization Failed

Failed to materialize the remote assets of "{package}@{version}": {reason}

Message

Failed to materialize the remote assets of "{package}@{version}": {reason}

Cause

A static build (createBuild) with remote-assets clientAssets needs every asset file up front so the output is self-contained. Materialization walks the provider's file listing and downloads each file; one of those steps failed: the provider has no listFiles, the listing request failed, or a file download errored.

Fix

  • Install the assets package locally (npm install <package>@<version>); builds copy from the local install and touch no network.
  • Otherwise ensure the provider and its file-listing API are reachable during the build, or configure a custom provider that implements listFiles.

Source