Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Exceptions/Solutions/ManifestDoesNotExistSolution.php
10263 views
1
<?php
2
3
namespace Pterodactyl\Exceptions\Solutions;
4
5
use Spatie\Ignition\Contracts\Solution;
6
7
class ManifestDoesNotExistSolution implements Solution
8
{
9
public function getSolutionTitle(): string
10
{
11
return "The manifest.json file hasn't been generated yet";
12
}
13
14
public function getSolutionDescription(): string
15
{
16
return 'Run yarn run build:production to build the frontend first.';
17
}
18
19
public function getDocumentationLinks(): array
20
{
21
return [
22
'Docs' => 'https://github.com/pterodactyl/panel/blob/develop/package.json',
23
];
24
}
25
}
26
27