Hello. I' m getting this error in the terminal when I'm trying to bundle my code. Does react-date-picker support css modules ? Because I'm not using the style-loader.
My bad. I resolved by adding to my webpack config file
{
test: /\.css$/,
loader: ['style-loader', 'css-loader']
}
Most helpful comment
My bad. I resolved by adding to my webpack config file
{ test: /\.css$/, loader: ['style-loader', 'css-loader'] }