-
Notifications
You must be signed in to change notification settings - Fork 979
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
Deployment Issue – "Could not find a production build in the '.next' directory" #8327
Comments
This issue does not seem to follow the issue template. Make sure you provide all the required information. |
Hey @Buenaventura-Celine thanks for reporting your issue. Can you please follow the steps from the Firebase Hosting docs to integrate Next.js and report back here? The key difference is you don't need to implement a Cloud Function for the Next.js server, the Firebase web frameworks integration does that for you. |
Thanks @leoortizz after following the steps from the link you've given this is the result: the deployment is still not successful. I am seeing this error now. The steps I did:
For your reference here is my firebase.json
The version of my firebase is: 13.35.1 |
Hi @Buenaventura-Celine the problem is that your Please try that change, run Note: {
"firestore": {
"rules": "firestore.rules",
"indexes": "firestore.indexes.json"
},
"storage": {
"rules": "storage.rules"
},
"emulators": {
"auth": {
"port": 9099
},
"firestore": {
"port": 8080
},
"pubsub": {
"port": 8085
},
"storage": {
"port": 9199
},
"ui": {
"enabled": true
}
},
"hosting": {
"source": ".",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"frameworksBackend": {
"region": "us-central1"
}
}
} |
Hello @chalosalvador, Thank you for your help! The solution worked, but I’m still encountering several issues when accessing the dynamic pages. I’m not sure if this falls within your scope, but I noticed that when I deploy the project on Vercel, these issues don’t occur. Would you happen to have any insights on why this might be happening? These are the issues I encounter when I do
This is my next-i18next.config.js |
@Buenaventura-Celine I've tested with a simpler |
Hey @Buenaventura-Celine. We need more information to resolve this issue but there hasn't been an update in 7 weekdays. I'm marking the issue as stale and if there are no new updates in the next 3 days I will close it automatically. If you have more information that will help us get to the bottom of this, just add a comment! |
[REQUIRED] Environment info
firebase-tools: 12.5.0
Platform: MacOS
Next JS: 14.2.24
[REQUIRED] Test case
Hello,
I am deploying my Next.js app using Firebase. My project consists of a Next.js frontend with Firebase as the backend, which is why I chose Firebase for deployment. The app relies on Server-Side Rendering (SSR) and uses functions like getServerSideProps.
However, after deployment, the website displays the following error:
Error during Next.js app preparation: Could not find a production build in the '.next' directory. Try building your app with 'next build' before starting the production server. https://nextjs.org/docs/messages/production-start-no-build-id
It seems like Firebase is not detecting or using the .next directory properly. I have already ensured that I ran next build before deploying.
[REQUIRED] Steps I did before deployment
This is also my firebase.json
Then I run the
npm run build
, for me to have the .next folder then after thatfirebase deploy
. Am I missing something?The text was updated successfully, but these errors were encountered: