Skip to content

Commit

Permalink
push version
Browse files Browse the repository at this point in the history
  • Loading branch information
wisp-x committed Apr 27, 2022
1 parent 7375089 commit fb5f83f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
@stack('styles')

<!-- Styles -->
<link rel="stylesheet" href="{{ asset('css/common.css') }}">
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
<link rel="stylesheet" href="{{ asset('css/common.css') }}?t=20220427">
<link rel="stylesheet" href="{{ asset('css/app.css') }}?t=20220427">
</head>
<body class="font-sans antialiased overflow-hidden">
<div class="min-h-screen bg-gray-100" x-data x-cloak>
Expand Down Expand Up @@ -44,7 +44,7 @@ class="z-[9] bg-black bg-opacity-75 transition-opacity h-full w-full fixed inset
</div>
</body>
<!-- Scripts -->
<script src="{{ asset('js/app.js') }}"></script>
<script src="{{ asset('js/app.js') }}?t=20220427"></script>
@include('common.notice')
<script>
// 开关组件默认值
Expand Down
6 changes: 3 additions & 3 deletions resources/views/layouts/guest.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
@stack('styles')

<!-- Styles -->
<link rel="stylesheet" href="{{ asset('css/common.css') }}">
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
<link rel="stylesheet" href="{{ asset('css/common.css') }}?t=20220427">
<link rel="stylesheet" href="{{ asset('css/app.css') }}?t=20220427">
</head>
<body class="font-sans antialiased">
<div class="min-h-screen text-gray-900 bg-gray-100">
{{ $slot }}
</div>
</body>
<!-- Scripts -->
<script src="{{ asset('js/app.js') }}"></script>
<script src="{{ asset('js/app.js') }}?t=20220427"></script>
@if(file_exists(public_path('js/custom.js')))
<script src="{{ asset('js/custom.js') }}"></script>
@endif
Expand Down

0 comments on commit fb5f83f

Please sign in to comment.