From 573671f5496baf5306e3debf1a80efb3cab0ba14 Mon Sep 17 00:00:00 2001 From: Lee Sheppard Date: Sat, 25 Jan 2025 22:04:48 +1100 Subject: [PATCH] Modify config for v3 --- tailwind.config.js | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index 3b337c3..43c9a42 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,10 +1,10 @@ module.exports = { - purge: [ + content: [ './app/views/**/*.html.erb', './app/helpers/**/*.rb', './app/frontend/**/*.{js,ts}', ], - darkMode: false, + plugins: [], theme: { extend: { colors: { @@ -125,13 +125,4 @@ module.exports = { }, }, }, - variants: { - extend: {}, - }, - plugins: [], - content: [ - "./app/views/**/*.html.erb", - "./app/helpers/**/*.rb", - "./app/javascript/**/*.js", - ], }