-
-
Notifications
You must be signed in to change notification settings - Fork 27k
Heroku: Module not found #2503
New issue
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
Comments
Maybe it's called |
Thank you so muck ! I don't know why git doesn't check if I change the name of a file ! Thank you 👍 |
To change file casing in git, you need to rename a file to something completely different, commit, and then rename it to the new name you wanted. It won't detect renames that only affect the file case. |
This just got me last night. Ugh. |
When I push my code to heroku he don't find my files:
Module not found: Error: Can't resolve './components/navigation/Navbar' in '/tmp/build_57c0b040126c80ff854d5d76e8a659a1/src'
This is my scripts in package.json
"scripts": {
"dev": "concurrently "nodemon -x 'npm start'" "npm run dev-server"",
"start": "babel-node server.js",
"dev-server": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"heroku-postbuild": "npm run build"
}
node v6.11.0
npm v3.10.10
The text was updated successfully, but these errors were encountered: