select
select copied to clipboard
index.css file not available
Hi, I only see the /assets/index.less file but not the css file in version 10.2.4
You can build it yourself!
In your js file, import the index.less as you would do with the old css file:
import 'rc-select/assets/index.less';
In your webpack config file, ensure you have a rule to handle less files. For example:
...
module: {
rules: [
...
{
test: /\.less$/,
use: ['style-loader', 'css-loader', 'less-loader'],
},
...
]
}
...
Shouldn't package be distributed with compiled assets and even JS?
Hi, any update on here? I think it would be better to provide it since rc-pagination also provided it

any updates?