fix(build): Revert to ESM config without imports
- 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:
parent
60085da01b
commit
1874b70e52
1 changed files with 2 additions and 2 deletions
|
|
@ -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: [],
|
||||||
}
|
}
|
||||||
Loading…
Add table
Reference in a new issue