Using asp.net server side I can do style bundling for .css files and script bundling for .js files. Alle .css or .js files are packed into one file for each format and minified.
Now I am also using requirejs on client side and asked myself now should I still use the requirejs optimizer to compress the .css and .js files like my javascript libraries (Often these libraries are already compressed...). Ok there are still the requirejs modules which are my viewmodels etc... which can be compressed but often those files are 3-4 kb not really worth the effort I think.
I also asked myself is requirejs optimizer worth the time I have to invest when there is anyway gzip compression for files which gives normally the best results.
So do you think I should go for requirejs optimizer or is style/script bundling on asp.net and gzip compression on IIS server totally enough?