From d730a4fa88beda2f98abe26831c1caf3f3a61633 Mon Sep 17 00:00:00 2001 From: SanjayramVempati <101228879+SanjayramVempati@users.noreply.github.com> Date: Sun, 29 Jan 2023 20:57:49 -0500 Subject: [PATCH] updated to work with tailwind --- tailwind.config.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index 6813045..3770885 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,7 +1,11 @@ +/** @type {import('tailwindcss').Config} */ module.exports = { - content: ["./templates/**/*.html"], + content: [ + "./templates/**/*.html", + "./static/src/**/*.js" + ], theme: { - extend: {}, + extend: {}, }, plugins: [], -}; + }