Method: Webpacker::Helper#javascript_pack_tag
- Defined in:
- lib/webpacker/helper.rb
#javascript_pack_tag(*names, **options) ⇒ Object
Creates a script tag that references the named pack file, as compiled by webpack per the entries list in package/environments/base.js. By default, this list is auto-generated to match everything in app/javascript/packs/*.js. In production mode, the digested reference is automatically looked up.
Example:
<%= javascript_pack_tag 'calendar', 'data-turbolinks-track': 'reload' %> # =>
<script src="/packs/calendar-1016838bab065ae1e314.js" data-turbolinks-track="reload"></script>
80 81 82 |
# File 'lib/webpacker/helper.rb', line 80 def javascript_pack_tag(*names, **) javascript_include_tag(*sources_from_manifest_entries(names, type: :javascript), **) end |