Skip to content

Commit 11afc27

Browse files
committed
Restrict views to common template formats
Using `./app/views/**/*` includes transient files like vim backup files and generates errors like that seen in rails/rails#44646.
1 parent 96cff61 commit 11afc27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: lib/install/tailwind.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
content: [
55
'./app/helpers/**/*.rb',
66
'./app/javascript/**/*.js',
7-
'./app/views/**/*'
7+
'./app/views/**/*.{erb,haml,html,slim}'
88
],
99
theme: {
1010
extend: {

0 commit comments

Comments
 (0)