We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d20b21 commit 59b6862Copy full SHA for 59b6862
README.md
@@ -130,14 +130,14 @@ Example:
130
131
```ruby
132
# config/importmap.rb
133
-pin "@github/hotkey", to: "vendor/javascript/@github--hotkey.js"
134
-pin "md5", to: "vendor/javascript/md5.js", preload: false
+pin "@github/hotkey", to: "@github--hotkey.js" # file lives in vendor/javascript/@github--hotkey.js
+pin "md5", preload: false # file lives in vendor/javascript/md5.js
135
136
# app/views/layouts/application.html.erb
137
<%= javascript_importmap_tags %>
138
139
# will include the following link before the importmap is setup:
140
-<link rel="modulepreload" href="/assets/javascripts/@github--hotkey.js">
+<link rel="modulepreload" href="/assets/javascript/@github--hotkey.js">
141
...
142
```
143
0 commit comments