We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks for providing such a simple & clean boilerplate. I am facing one issue.
webpack is not resolving Index.jsx for /accounts, /home folder. It is working fine for @/_helpers as it has index.js file.
Any idea to fix this issue?
The text was updated successfully, but these errors were encountered:
It seems issue with file case. Not resolving Index.jsx but resolving index.jsx well. After fixing in my project, I found this blog as well. https://harikrishnakanchi.github.io/blog/devlog-webpack-config.html
Not sure how you have solved it on your machine. Please let me know.
Sorry, something went wrong.
Adding mainFiles: ['index', 'Index'] solved my problem.
resolve: { mainFiles: ['index', 'Index'], extensions: ['.js', '.jsx'],
Thanks.
No branches or pull requests
Thanks for providing such a simple & clean boilerplate.
I am facing one issue.
webpack is not resolving Index.jsx for /accounts, /home folder. It is working fine for @/_helpers as it has index.js file.
Any idea to fix this issue?
The text was updated successfully, but these errors were encountered: