From 1c2a6966e4b1c5f2e44223a2e1135257adc285be Mon Sep 17 00:00:00 2001 From: myh Date: Fri, 1 Dec 2023 00:46:05 +0800 Subject: [PATCH] tailwindcss test --- src/styles.scss | 3 +++ tailwind.config.js | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/styles.scss b/src/styles.scss index 90d4ee0..d3a1a9a 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -1 +1,4 @@ /* You can add global styles to this file, and also import other style files */ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/tailwind.config.js b/tailwind.config.js index d947ab1..e5b64f3 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,6 +1,6 @@ /** @type {import('tailwindcss').Config} */ module.exports = { - content: [], + content: ["./src/**/*.{html,js}"], theme: { extend: {}, },