From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_BLOCKED, URIBL_DBL_BLOCKED_OPENDNS autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1695729656; bh=bGBT/GIYDbXQHnS5McQxSnxeQqBkH+NNwq16DJQHFyU=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=cZAgMsnS0A1KZF0j83CB4P6Ar1eLI3pKsv+5nLTmcSFWrrRdsRC5cs2pcX9f/nr05 xDTn+H836fgiK8OhA58339BjzDM/LJ7GeTsL27Cpci3956/HHVaKD9aVGgHkQx2tQd BF88Baofy/dmwCRZjYHcT8Y6orw+lirTXG+N7c+G0+8KHdhcSLPJ7JSjX07UAIVjf9 PapjbvoqOzEBLxj6WZ4qZ3CD1RLEfcanEz4K06JAIyGGfzCVECFwAtiwy0tM87sjQZ n4euAsZq8YQvUwaYRfpbkxR+fB0bQhF4EVE70LlbxqNtZfN8bmxcG9dq7PDdhCys7r ZOMZFwMyOuI1g== Received: from localhost.localdomain (unknown [175.158.50.50]) by gnuweeb.org (Postfix) with ESMTPSA id 0260024B763; Tue, 26 Sep 2023 19:00:54 +0700 (WIB) From: Muhammad Rizki To: Ammar Faizi Cc: Muhammad Rizki , Alviro Iskandar Setiawan , Irvan Malik Azantha , Memet Zx , GNU/Weeb Mailing List Subject: [PATCH v1 1/1] fix: add *.js and *.css for tailwind config Date: Tue, 26 Sep 2023 19:00:27 +0700 Message-Id: <20230926120027.516-2-kiizuha@gnuweeb.org> X-Mailer: git-send-email 2.34.1.windows.1 In-Reply-To: <20230926120027.516-1-kiizuha@gnuweeb.org> References: <20230926120027.516-1-kiizuha@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: This config is to detect any possible class names in the JS and CSS files. Signed-off-by: Muhammad Rizki --- tailwind.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tailwind.config.js b/tailwind.config.js index 39fb13d..56dac06 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,6 +1,6 @@ /** @type {import('tailwindcss').Config} */ module.exports = { - content: ["./*.html"], + content: ["./*.{html,js,css}"], theme: { extend: {}, }, -- Muhammad Rizki