Skip to content

Instantly share code, notes, and snippets.

@kevinhq
Last active August 15, 2020 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kevinhq/d8d63a7924f36782964f95a585bdf023 to your computer and use it in GitHub Desktop.
Save kevinhq/d8d63a7924f36782964f95a585bdf023 to your computer and use it in GitHub Desktop.
Step-by-Step guide on how to move from Sprockets to Webpacker - application.html.erb
<%# app/views/layouts/application.html.erb %>
<!DOCTYPE html>
<html>
<head>
<!-- add this new application.js -->
<%= javascript_pack_tag 'application' %>
</head>
<body>
<%= yield %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment