We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc3b2d3 commit f4e99c1Copy full SHA for f4e99c1
2 files changed
Envoy.blade.php
@@ -1,8 +1,10 @@
1
@servers(['local' => ['127.0.0.1'], 'server' => ['root@143.198.129.111']])
2
3
{{-- Full deploy flow --}}
4
-@story('deploy', ['skipBackup' => false])
5
- build-frontend
+@story('deploy', ['skipBackup' => false, 'skipBuildFrontend' => false])
+ @if(!$skipBuildFrontend)
6
+ build-frontend
7
+ @endif
8
@if(!$skipBackup)
9
backup-database
10
@endif
resources/js/Layouts/AppLayout.vue
@@ -11,6 +11,11 @@ defineProps({
11
12
<template>
13
<div>
14
+ <noscript>
15
+ <div style="background: #f87171; color: #fff; padding: 1rem; text-align: center;">
16
+ JavaScript is required for this site to function properly. Please enable JavaScript in your browser settings.
17
+ </div>
18
+ </noscript>
19
<Head :title="title" />
20
21
<Banner />
0 commit comments