fix(build): Revert to ESM config without imports
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 back to tailwind.config.js (ESM)
- Used export default with hardcoded Design OS palette
- This avoids both CJS/ESM interop issues and module resolution errors
This commit is contained in:
fullsizemalt 2025-12-19 15:43:59 -08:00
parent 60085da01b
commit 1874b70e52

View file

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