Skip to content

Commit

Permalink
Fix tailwind?
Browse files Browse the repository at this point in the history
  • Loading branch information
jdudley1123 committed Dec 12, 2024
1 parent 3fba639 commit f33dbb8
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
const { join } = require('path');

module.exports = {
content: [
'./app/views/**/*.html.erb',
'./app/helpers/**/*.rb',
'./app/assets/stylesheets/**/*.css',
'./app/javascript/**/*.js',
'./app/components/**/*.html.erb'
join(__dirname, 'app/views/**/*.html.erb'),
join(__dirname, 'app/helpers/**/*.rb'),
join(__dirname, 'app/assets/stylesheets/**/*.css'),
join(__dirname, 'app/javascript/**/*.js'),
join(__dirname, 'app/components/**/*.html.erb')
],
theme: {
extend: {
Expand Down

0 comments on commit f33dbb8

Please sign in to comment.