Subiendo proyecto completo sin restricciones de git ignore
This commit is contained in:
3
vendor/facade/ignition/resources/.gitignore
vendored
Normal file
3
vendor/facade/ignition/resources/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
compiled/*
|
||||
!compiled/index.html
|
||||
!compiled/ignition.js
|
||||
32
vendor/facade/ignition/resources/compiled/ignition.js
vendored
Normal file
32
vendor/facade/ignition/resources/compiled/ignition.js
vendored
Normal file
File diff suppressed because one or more lines are too long
12
vendor/facade/ignition/resources/compiled/index.html
vendored
Normal file
12
vendor/facade/ignition/resources/compiled/index.html
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<title>Vue App</title>
|
||||
<link href="/flare.js" rel="preload" as="script"></head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="text/javascript" src="/flare.js"></script></body>
|
||||
</html>
|
||||
65
vendor/facade/ignition/resources/views/errorPage.php
vendored
Normal file
65
vendor/facade/ignition/resources/views/errorPage.php
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
<!doctype html>
|
||||
<html class="theme-<?=$config['theme']?>">
|
||||
<!--
|
||||
<?=$throwableString?>
|
||||
-->
|
||||
<head>
|
||||
<!-- Hide dumps asap -->
|
||||
<style>
|
||||
pre.sf-dump {
|
||||
display: none !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
|
||||
<title><?= $title ?></title>
|
||||
|
||||
<?php foreach ($styles as $script): ?>
|
||||
<link rel="stylesheet" href="<?=$housekeepingEndpoint?>/styles/<?=$script?>">
|
||||
<?php endforeach; ?>
|
||||
|
||||
</head>
|
||||
<body class="scrollbar-lg">
|
||||
|
||||
<script>
|
||||
window.data = <?=
|
||||
$jsonEncode([
|
||||
'report' => $report,
|
||||
'config' => $config,
|
||||
'solutions' => $solutions,
|
||||
'telescopeUrl' => $telescopeUrl,
|
||||
'shareEndpoint' => $shareEndpoint,
|
||||
'defaultTab' => $defaultTab,
|
||||
'defaultTabProps' => $defaultTabProps,
|
||||
'appEnv' => $appEnv,
|
||||
'appDebug' => $appDebug,
|
||||
])
|
||||
?>;
|
||||
|
||||
window.tabs = <?=$tabs?>;
|
||||
</script>
|
||||
|
||||
<noscript><pre><?=$throwableString?></pre></noscript>
|
||||
|
||||
<div id="app"></div>
|
||||
|
||||
<script><?= $getAssetContents('ignition.js') ?></script>
|
||||
<script>
|
||||
window.Ignition = window.ignite(window.data);
|
||||
</script>
|
||||
<?php foreach ($scripts as $script): ?>
|
||||
<script src="<?=$housekeepingEndpoint?>/scripts/<?=$script?>"></script>
|
||||
<?php endforeach; ?>
|
||||
<script>
|
||||
Ignition.start();
|
||||
</script>
|
||||
<!--
|
||||
<?=$throwableString?>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user