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 3 years have passed since last update.

【rails】デプロイ時のUglifier::Error: Unexpected token: について

Posted at

#はじめに

デプロイ時にでたエラー
Uglifier::Error: Unexpected token:

の解決方法を記載しておきます

#解決方法

config/environments/production.rb
config.assets.js_compressor = :uglifier

上記の記述を下記の記述に編集します⬇︎

config/environments/production.rb
config.assets.js_compressor = Uglifier.new(harmony: true)

編集したらコミットプッシュを忘れずに!

以上で解決できました。

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?