laravel使用初めてです。
viewを作っていますがcssファイルが反映されません。
原因を教えてください。
publicディレクトリのcssフォルダと
resourcesディレクトリのsassフォルダはどう違うのですか?
css系のコードどちらに入れればいいのでしょうか?
ファイル名resources/views/posts/layout.blade.php <!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>shop</title> <!-- Fonts --> <link rel="dns-prefetch" href="//fonts.gstatic.com"> <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet"> <!-- Styles --> <link href="{{ asset('sass/app.scss') }}" rel="stylesheet"> </head> <header> <div class="header-top"> <h1 class="title">shop</h1> <ul class="menus"> <li class="menu">新規登録</li> <li class="menu">ログイン</li> </ul> </div> </header> <body> @yield('content') </body> </html>
ファイル名resources/sass/app.scss // Fonts @import url('https://fonts.googleapis.com/css?family=Nunito'); // Bootstrap @import '~bootstrap/scss/bootstrap'; @import "~@fortawesome/fontawesome-free/scss/fontawesome"; @import '~@fortawesome/fontawesome-free/scss/solid'; @import '~@fortawesome/fontawesome-free/scss/regular'; @import '~@fortawesome/fontawesome-free/scss/brands'; @import "reset"; @import "layout"; @import "index"; @import "show";
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/18 09:47