npm start (craco start)
一切正常,正在编译颜色。
npm run build (craco build)
但是在运行时,每个配置只编译一种颜色,dallas
从theme.textColor
和vista-white
从theme.gradientColorStops
。
我试过了:
- 重新排序
theme.textColor
属性。 - 删除
node_modules
和npm i
。 - 删除
build
并重建。
// craco.config.js
module.exports = {
style: {
postcss: {
plugins: [require('tailwindcss'), require('autoprefixer')],
},
},
};
// tailwind.config.js
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
textColor: (theme) => ({
...theme('colors'),
dallas: '#664A2D',
'blue-charcoal': '#24292E',
denim: '#0D66C2',
'spring-green': '#05E776',
flamingo: '#E65A4D',
}),
gradientColorStops: (theme) => ({
...theme('colors'),
'vista-white': '#E1DFDC',
}),
},
variants: {
extend: {},
},
plugins: [],
};