I’m currently facing this problem whenever I want to build my application.
Failed to compile.
static/css/main.8da26278.css from CSS Minimizer plugin
cssmain.8da26278.css:1356:42: Unknown word [webpack://./src/index.css:3,0][static/css/main.8da26278.css:1356,42]
I couldn’t find anything related to this error. Can you please help?
I tried adding auto-prefixer and postcss config and nothing works..
this is my config file
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/*/.{js,jsx,ts,tsx}",
],
theme: {
extend: { boxShadow: {
'cardShadow': 'rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;'
}, fontFamily: {
'lama': ['Lama Sans', 'sans-serif']
}},
},
plugins: [],
screens: {
lg: { max: "1920px" },
md: { max: "1000px" }
},
}