Skip to content

Commit 5f02068

Browse files
committed
fix: remove Math.random() and console.log from tailwind.config.js
Removed leftover debug code from build configuration: - Math.random() generated a non-deterministic hex color on every build, making builds non-reproducible and CI/CD unreliable - console.log(rc) printed noise to stdout during every build and npm start session Neither had any effect on the Tailwind configuration itself.
1 parent 45d9d18 commit 5f02068

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

tailwind.config.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/** @type {import('tailwindcss').Config} */
22

3-
let rc =Math.floor(Math.random() * 16777215).toString(16)
4-
console.log(rc)
5-
63
module.exports = {
74
darkMode: "class",
85
content: ["./src/**/*.{js,jsx}"],

0 commit comments

Comments
 (0)