Module build failed (from ./node_modules/css-loader/dist/cjs.js): CssSyntaxError
问题 im building a react app and i imported a slider in a file and then i got a css-loader, im also using webpack here is my slider - import React, {useState} from 'react'; import RubberSlider from '@shwilliam/react-rubber-slider'; import styles from '@shwilliam/react-rubber-slider/dist/styles.css'; export const Slider = () => { const [value, setValue] = useState(0.5) return <RubberSlider width={250} value={value} onChange={setValue} /> } this ^ will go in another component and get called on but