fix(build): Convert tailwind config to CJS
Some checks are pending
Deploy to Production / deploy (push) Waiting to run
Test / backend-test (push) Waiting to run
Test / frontend-test (push) Waiting to run

- Renamed tailwind.config.ts to .cjs to force CommonJS loading
- Switched to require() syntax to bypass ESM loader issues in PostCSS
This commit is contained in:
fullsizemalt 2025-12-19 15:39:42 -08:00
parent 897693d89b
commit 77e9dd7e70

View file

@ -1,7 +1,7 @@
import colors from 'tailwindcss/colors'; const colors = require('tailwindcss/colors');
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
export default { module.exports = {
content: [ content: [
"./index.html", "./index.html",
"./src/**/*.{js,ts,jsx,tsx}", "./src/**/*.{js,ts,jsx,tsx}",
@ -193,5 +193,5 @@ export default {
}, },
}, },
}, },
plugins: [], plugins: [],
} }