// When using a bundler such as Webpack, // include both noUiSlider and its stylesheet. // Either import the default: import noUiSlider from 'nouislider'; // Or the namespace: import * as noUiSlider from 'nouislider'; import 'nouislider/dist/nouislider.css'; // Alternatively, you can include both files: <link href="nouislider.css" rel="stylesheet"> <script src="nouislider.js"></script> // You can also use the ES6 module distribution <script type="module"> import noUiSlider from 'nouislider/dist/nouislider.mjs'; </script>