mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 09:16:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			588 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			588 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Exceptions\Solutions;
 | 
						|
 | 
						|
use Spatie\Ignition\Contracts\Solution;
 | 
						|
 | 
						|
class ManifestDoesNotExistSolution implements Solution
 | 
						|
{
 | 
						|
    public function getSolutionTitle(): string
 | 
						|
    {
 | 
						|
        return "The manifest.json file hasn't been generated yet";
 | 
						|
    }
 | 
						|
 | 
						|
    public function getSolutionDescription(): string
 | 
						|
    {
 | 
						|
        return 'Run yarn run build:production to build the frontend first.';
 | 
						|
    }
 | 
						|
 | 
						|
    public function getDocumentationLinks(): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'Docs' => 'https://github.com/pelican/panel/blob/master/package.json',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |