mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-03-25 09:25:50 +00:00
fix: resolve Tailwind CSS content pattern performance warning
- Remove redundant content patterns - Add explicit node_modules exclusion - Prevents accidental matching of node_modules files
This commit is contained in:
parent
4cacb251b3
commit
6c4adfe10f
1 changed files with 5 additions and 1 deletions
|
|
@ -1,6 +1,10 @@
|
|||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: ["./src/**/*.{html,js,ts,jsx,tsx}", "./src/**/*.ts", "./src/components/*.ts", "./src/*.ts", "./public/**/*.html"],
|
||||
content: [
|
||||
"./src/**/*.{html,js,ts,jsx,tsx}",
|
||||
"./public/**/*.html",
|
||||
"!./node_modules/**/*"
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue