Skip to content

Instantly share code, notes, and snippets.

@123ish
Forked from kevinhq/application.html.erb
Created August 15, 2020 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 123ish/f90680302affec34d80fd22f2df0bbcf to your computer and use it in GitHub Desktop.
Save 123ish/f90680302affec34d80fd22f2df0bbcf 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