. My theme compiles correctly and everything else worked like a charm.
My issue: The uploaded image/s are blurred, or the entire preview is cut out. The bug where the whole preview is cut out appears when I reload the page, visit some other tabs and then open the images tab.
Code:
Product model
public function registerMediaCollections(): void { $this ->addMediaCollection('products') ->useDisk('products'); } public function registerMediaConversions(?Media $media = null): void { $this->addMediaConversion('thumb') ->width(240) ->height(270); $this->addMediaConversion('medium') ->width(400); }
public function registerMediaCollections(): void { $this ->addMediaCollection('products') ->useDisk('products'); } public function registerMediaConversions(?Media $media = null): void { $this->addMediaConversion('thumb') ->width(240) ->height(270); $this->addMediaConversion('medium') ->width(400); }