Commit 067e42b
committed
Generate
Prior to this change, installing the engine via `bin/rails
tailwindcss:install` yielded the following diff:
```diff
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -6,7 +6,9 @@
<%= csp_meta_tag %>
- <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
+
+ <%= stylesheet_link_tag "inter-font", "data-turbo-track": "reload" %>
+ <%= stylesheet_link_tag "tailwind", "data-turbo-track": "reload" %> <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
<%= javascript_importmap_tags %>
</head>
```
After this change, the calls to `stylesheet_link_tag` with
`"inter-font"`, `"tailwind"`, and `"application"` all occur on their own
lines.stylesheet_link_tag on separate lines1 parent 7a63d1a commit 067e42b
1 file changed
+4
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
6 | 9 | | |
7 | 10 | | |
8 | 11 | | |
| |||
0 commit comments