You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If this is a feature request, what is motivation or use case for changing the behavior?
Have 2 modules with the same name in 2 different folders. E.g.
components
- Form
- Form.css
- index.jsx -> import styles from './Form.css'
screens
- Account
- Form
- Form.css
- index.jsx -> import styles from './Form.css'
I believe the ident hash is generated base on a relative import path ./Form.css, which would be the same in both cases. If you used an absolute path (or at least relative to the source root) that would help.
Please mention other relevant information such as your webpack version, Node.js version and Operating System.
Webpack 2.2.1
Node 6.9.5
maxOS Sierra
The text was updated successfully, but these errors were encountered:
Do you want to request a feature or report a bug?
Bug
What is the current behavior?
Classnames are not unique
What is the expected behavior?
Classnames should be unique
If this is a feature request, what is motivation or use case for changing the behavior?
Have 2 modules with the same name in 2 different folders. E.g.
I believe the ident hash is generated base on a relative import path
./Form.css
, which would be the same in both cases. If you used an absolute path (or at least relative to the source root) that would help.Please mention other relevant information such as your webpack version, Node.js version and Operating System.
The text was updated successfully, but these errors were encountered: