Texture interpolation warning

Is there a way to get rid of the Warning regarding the interpolation of textures if their size is not a power of 2? I’ve even explicitly declared on the CubeMap throwing it to be linear, but I want to get rid of this in production…

You can remove it internally or just overwrite console.warn = function() {};, for prod. But there are reasons you are aware of i guess.

Hmm, I thought I was but what should I be specifically be concerned with that solution? What about the dist .min version? Does it keep the warning too? Thanks