現在、Herokuへデプロイするためにgemのセットアップ、heroku createにてドメインを作成を済ませ、
デプロイしようとgit push heroku masterを打ったところ下記のエラーが出ました。(長くてすいません)
恐らく、application.jsにてCannot find moduleとなっているために発生していると思うのですが、
解決の術がわかりませんでした。
大変お手数おかけしますが、git push heroku masteを成功させる方法をご教授頂けますでしょうか。
下記に該当する可能性のあるファイルを貼らせていただきます。
*application.js* // This is a manifest file that'll be compiled into application.js, which will include all the files // listed below. // // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, or any plugin's // vendor/assets/javascripts directory can be referenced here using a relative path. // // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the // compiled file. JavaScript code in this file should be added after the last require_* statement. // // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details // about supported directives. // //= require rails-ujs //= require jquery //= require bootstrap //= require_tree .
*application.rb* require_relative 'boot' require 'rails/all' require 'csv' # Require the gems listed in Gemfile, including any gems # you've limited to :test, :development, or :production. Bundler.require(*Rails.groups) module AApp class Application < Rails::Application # Initialize configuration defaults for originally generated Rails version. config.load_defaults 5.2 config.time_zone = 'Asia/Tokyo' config.i18n.default_locale = :ja config.i18n.load_path += Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}').to_s] # Settings in config/environments/* take precedence over those specified here. # Application configuration can go into files in config/initializers # -- all .rb files in that directory are automatically loaded after loading # the framework and any gems in your application. end end
宜しくお願い致します。
回答1件
あなたの回答
tips
プレビュー