From f33dbb86766d833195484c6e34325aa969c52e93 Mon Sep 17 00:00:00 2001 From: "joseph@dxw.com" Date: Thu, 12 Dec 2024 11:36:01 +0000 Subject: [PATCH] Fix tailwind? --- tailwind.config.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index d64f5538..4993593c 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -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: {