Skip to content

Commit

Permalink
Restrict views to common template formats (#155)
Browse files Browse the repository at this point in the history
Using `./app/views/**/*` includes transient files like vim backup
files and generates errors like that seen in rails/rails#44646.
  • Loading branch information
pixeltrix authored Mar 10, 2022
1 parent 96cff61 commit af10f7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/install/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
content: [
'./app/helpers/**/*.rb',
'./app/javascript/**/*.js',
'./app/views/**/*'
'./app/views/**/*.{erb,haml,html,slim}'
],
theme: {
extend: {
Expand Down

0 comments on commit af10f7e

Please sign in to comment.