mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-27 15:17:38 +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} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
module.exports = {
|
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: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
colors: {
|
colors: {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue