Created by: mxstbr
This is the only way I've found to "disable" the :local(.class) notation.
It disables it in the sense that the generated classname will just be "class" – it doesn't keep users from doing the webpack-specific thing though:
import styles from './styles.css';
<div className={styles.class} />
That means it'll still break users builds if they for some reason rely on the above and we change to a different bundler.
Closes #90 (closed)