0
0

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.

Laravel学習の個人的備忘録①

Posted at

Laravelで新しくレシピ保存サイトを作ろうとした話。

まず
環境はMAMP
第一歩として

htdocsディレクトリ内にrecipeディレクトリを作成した。
Composerを用いて
そのディレクトリの中にLaravelをインストールしようとしたが

composer require laravel/breeze --dev

composer require laravel/breezeの違いが分からず
違いについて調べていた。

--devの有無は今後調べる。

breezeをインストールした後
フォントが崩れている原因:package.jsonには
Laravel-mixを指定しているが
Componentファイルでviteが使われているため。

具体的なその対策は

・layouts/app.blade.php
・layouts/guest.blade.phpファイルの

<!-- Scripts -->
@vite(['resources/css/app.css', 'resources/js/app.js'])

の箇所を

<!-- Styles -->
<link rel="stylesheet" href="{{ asset('css/app.css') }}">

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

に変更するとフォントが直った。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?