-
-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Closed
Description
Expected tailwind.config.cjs:
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}', // <--
],
theme: {...},
plugins: [require("tailwindcss-animate")],
}Actual tailwind.config.cjs:
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}', // <--
],
theme: {...},
plugins: [require("tailwindcss-animate")],
}I think the update needs to happen somewhere around Line 229 of the init.js.
Metadata
Metadata
Assignees
Labels
No labels