LaravelでBootstrap-Iconsを利用する
まず問題!
<img src="./node_modules/bootstrap-icons/icons/bootstrap-fill.svg" alt="" width="32" height="32" title="Bootstrap">
上のパスのどこが間違ってるでしょうか!正解はnode_modules
にアクセスはできないってとこです!
404で参照できないって言われます...。
まぁ参照する方法はあると思うのですが、まずnode_modules
はGit管理外の場所なのでおすすめはしないです。
そこでなら調べたらLaravel/Mix
に良い機能があるではないですか!
https://readouble.com/laravel/5.5/ja/mix.html
mix.copy
にコピー元
とコピー先
を指定すればnpm run dev
などの実行時にコピーしてくれるみたいです。
public\
の中なら読み込みができるのでbootstrap-icons
というフォルダーを作成して
mix.copy('node_modules/bootstrap-icons', 'public/bootstrap-icons');
を追加してnpm run dev
を実行すれば
コピーされてると思います!
あとは
<img src="bootstrap-icons/icons/bootstrap-fill.svg" alt="" width="32" height="32" title="Bootstrap">
に変更すれば表示できると思います!
Author And Source
この問題について(LaravelでBootstrap-Iconsを利用する), 我々は、より多くの情報をここで見つけました https://qiita.com/sugitaku03031/items/921bebc7e018c807f650著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .