-
Trying to use TimePicker in a Next.js project, I get the following error: Failed to compile ../../node_modules/react-clock/dist/Clock.css Is it possible to ship a compiled version of Clock.css? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
In Next.js, you'd need to import CSS yourself by following these instructions: https://github.com/wojtekmaj/react-time-picker#custom-styling Or don't import CSS at all and create your own styles as you like. |
Beta Was this translation helpful? Give feedback.
In Next.js, you'd need to import CSS yourself by following these instructions:
https://github.com/wojtekmaj/react-time-picker#custom-styling
Or don't import CSS at all and create your own styles as you like.