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?

Laravelでnpmのfontawesome導入時に相対パスを対応した話

Last updated at Posted at 2025-03-12

結論

  • webpack.mix.js に mix.setResourceRoot('../'); を追記する。
  • npm run prod を再実行する。
    • app.css から fortawesomeのfontの参照が相対パスになる
webpack.mix.js
const mix = require('laravel-mix');

/*
 |--------------------------------------------------------------------------
 | Mix Asset Management
 |--------------------------------------------------------------------------
 |
 | Mix provides a clean, fluent API for defining some Webpack build steps
 | for your Laravel application. By default, we are compiling the Sass
 | file for the application as well as bundling up all the JS files.
 |
 */

mix.js('resources/js/app.js', 'public/js').vue()
    .sass('resources/sass/app.scss', 'public/css');

// ★★★ fortawesomeの相対パス対応
mix.setResourceRoot('../');

if (mix.inProduction()) {
    mix.version();
}

環境

  • Laravel 8.x
  • FontAwesome 5.x

※ Laravelの他バージョンや、FontAwesome 6.x でも同様の修正で対応できるかと思います。

解説

Laravel-mix は webpack をラップしているのですが、webpackのデフォルトオプション processCssUrls: true が効いており、sassの url() をいい感じに書き換えています。
そのため、sass側でurl()の内容を修正するのではなく、Laravel-mix側で修正することで対応できました。

経緯

npmでfortawesome を導入しましたが、npm run prod で作成される app.css が 絶対パスでした。
そこを相対パスに変更したいと思いネット検索したのですが、対応記事になかなかたどりつけなかったため、記事化しました。
普段使わない sass + Laravel-mix(webpack) が絡んでおり、問題解決の記事にたどり着くまで時間がかかりました。
何かの参考になれば幸いd

参考リンク

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?