Edit File: HtmlIsNotAllowedToContainFile.php
<?php namespace Spatie\Browsershot\Exceptions; use Exception; class HtmlIsNotAllowedToContainFile extends Exception { public static function make(): static { return new static('The specified HTML contains `file://` or `file:/`. This is not allowed.'); } }
Back