diff --git a/tailwind.config.js b/tailwind.config.js index f75d088..d21f1cd 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,11 +1,8 @@ /** @type {import('tailwindcss').Config} */ -module.exports = { - content: [ - './src/**/*.{js,ts,jsx,tsx}', - // Add paths to other files that use Tailwind - ], +export default { + content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], theme: { extend: {}, }, plugins: [], -} +};