From d224f46ad2555a6551fa3bcedd1cdc531decdc76 Mon Sep 17 00:00:00 2001 From: HWJones <93132261+HWJones@users.noreply.github.com> Date: Thu, 12 Dec 2024 10:08:50 +0000 Subject: [PATCH] Create tailwind.config.js --- tailwind.config.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tailwind.config.js diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..0bf9d44 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,12 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [ + './pages/**/*.{js,ts,jsx,tsx,mdx}', + './components/**/*.{js,ts,jsx,tsx,mdx}', + './app/**/*.{js,ts,jsx,tsx,mdx}', + ], + theme: { + extend: {}, + }, + plugins: [], +}