
Why "quasar dev" have different result compared "quasar build"
I use "q-table bordered cell-delimiter striped-even responsive fit"
here my example code
Can confirm this issue with the example repo.
The breakpoints are missing from the prod build.
If the purifyCSS variable is set to false it works as expected.
Maybe it has to do with this issue in purifycss
https://github.com/purifycss/purifycss/issues/161
as workaround
inside css-utils.js you can add
purify(js, [file], {minify: true, whitelist: [ '*:not*' ]}, function (purified) {
this is mentioned in
https://github.com/purifycss/purifycss/issues/161
thanks @guyulmaz , solved my problem in q-table ...
This is no longer a problem for v0.15 (along with new CLI and starter kit, so closing this).
Most helpful comment
as workaround
inside css-utils.js you can add
purify(js, [file], {minify: true, whitelist: [ '*:not*' ]}, function (purified) {this is mentioned in
https://github.com/purifycss/purifycss/issues/161