Hey, I have a select2 js file located here resources/assets/libs/select2/dist/js/select2.min.js. The select2.min.js file is included inside core.js file.
The css file css NOT scss is located here resources/assets/libs/select2/dist/css/select2.css. The select2.css file is included inside core.scss file.
When i don't use purgeCss the select2 classes injected by its JS are working fine but when i apply purgeCss the select2 classes injected by its JS are no longer there in the css and that is why select2 design is messed up.
I want to exlude all those classes OR ID's used in my blade views or JS.
Please tell me do i have to use all the levels of safelist ? or which one should i use in this case, i also tried path.join(__dirname, 'resources/**/*.blade.php')
Hey, I have a select2 js file located here
resources/assets/libs/select2/dist/js/select2.min.js
. The select2.min.js file is included inside core.js file.The css file
css NOT scss
is located hereresources/assets/libs/select2/dist/css/select2.css
. The select2.css file is included inside core.scss file.When i don't use purgeCss the select2 classes injected by its JS are working fine but when i apply purgeCss the select2 classes injected by its JS are no longer there in the css and that is why select2 design is messed up.
I want to exlude all those classes OR ID's used in my blade views or JS.
Please tell me do i have to use all the levels of safelist ? or which one should i use in this case, i also tried
path.join(__dirname, 'resources/**/*.blade.php')