1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Laravel8】ログイン画面の表示がおかしいとき

Posted at

image.png

↑ログイン画面がこのような表示になってしまう

原因

package.jsonはlaravel-mix指定なのに、
layouts/guest.blade.phpとlayouts/app.blade.phpで、@Viteが使用されている。

image.png

image.png

修正

下記コードを削除

resources/views/layouts/gust.blade.php
@vite(['resources/css/app.css', 'resources/js/app.js'])

書き換え

resources/views/layouts/gust.blade.php
<!-- Styles -->
<link rel="stylesheet" href="{{ asset('css/app.css') }}">

<!-- Scripts -->
<script src="{{ asset('js/app.js') }}" defer></script>

※resources/views/layouts/app.blade.phpも同様

確認

簡易サーバーを立ち上げて確認

image.png

成功

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?