Merge pull request #8 from AeThex-LABS/claude/cleanup-next-gitignore-mkitk4rcv33vsp0t-M7IDl

Fix Tailwind CSS configuration and add test dependencies
This commit is contained in:
Anderson 2026-01-17 20:01:57 -07:00 committed by GitHub
commit df6b6754fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3383 additions and 454 deletions

3820
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -53,14 +53,22 @@
"zustand": "^5.0.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22",
"@types/react": "^18",
"@types/node": "22.19.7",
"@types/react": "18.3.27",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"jsdom": "^27.4.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5"
"typescript": "^5",
"vitest": "^4.0.17"
}
}

View file

@ -143,6 +143,11 @@ const defaultTheme = {
}
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
],
theme: { ...defaultTheme, ...theme },
plugins: [require("tailwindcss-animate")],
};