2
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.

Laravelでassets関数を使用した部分のcss・jsが読み込まれない

Posted at

経緯

デプロイした際にcssが効いていなかった。開発者ツールで見てみるとassets関数を使用した部分で/public/以下を表示せずに、/css/app.cssみたいな感じで出力されていることがわかった。

開発環境

Laravel 8.8.3
サーバー:Xserver

解決策

.envに以下を追加する。

// example.comの部分は自身のサイトのものに書き換える。
ASSET_URL=http://example.com/public

その後以下コマンドでキャッシュクリアしておく

php artisan route:clear
php artisan cache:clear
php artisan config:clear
php artisan view:clear
npm run dev
php artisan key:generate

参考元
https://readouble.com/laravel/8.x/ja/helpers.html#method-asset

2
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
2
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?