@Sinnbeck
Cheers for the quick response! Appreciate it. I have that working, but than I have to compile my CSS code every time a new reseller is added to my database. I would like a more flexibel aproach.
Any suggestions?
purge: {
"content": [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
],
// These options are passed through directly to PurgeCSS
options: {
safelist: {
standard: [/(mnp|fnz)/],
}
},
},
mnp and fnz are reseller codes, more are to be added through a Reseller model. This would mean I need to run mix --production for each new reseller in the future.