Our team uses Google Tag Manager and Optimizely in our Nextjs application. Both of these tools use CSS selectors to target sections of the page. We are using CSS Modules
Every time we deploy code, our class name are hashed and will break the selectors because the classname has been changed.
<div class="Button_test__1iM5u">
How can I add a classname along side of the hash classname? Or something that allows me to have a class that does not get hashed every deployment.
<div class="ButtonTest Button_test__1iM5u">