Prisma Studio Whitescreen?
Hello, when i start up prisma studio using yarn prisma studio -p 6000, i don't get any errors. When i open the url, it's just a white screen. Any help is appreciated, thanks
1 Reply
You've gone full bot mode! Let me fetch that AI answer for you ASAP.
Based on the information provided in the knowledge sources, there are a few potential issues that could be causing the white screen in Prisma Studio. Here are some suggestions to troubleshoot:
1. Check your Prisma version:
Make sure you're using the latest version of Prisma. Some issues have been resolved in newer versions. You can update Prisma by running
yarn add prisma@latest
.
2. Clear your browser's IndexedDB:
As mentioned in this GitHub issue comment, clearing your browser's IndexedDB might resolve the white screen issue.
3. Check the browser console for errors:
Open your browser's developer tools and check the console for any error messages. This might provide more insight into what's causing the white screen.
4. Verify your schema file location:
Ensure that your schema.prisma
file is in the correct location, typically in the root directory or in a prisma
folder. Prisma Studio needs to find this file to function properly.
5. Try running Prisma Studio without specifying a port:
Instead of yarn prisma studio -p 6000
, try running just yarn prisma studio
to see if it works with the default port.
If none of these steps resolve the issue, you might want to check your project setup, ensure all dependencies are correctly installed, and that your schema.prisma
file is valid. If the problem persists, you may need to provide more details about your setup or consider opening an issue on the Prisma GitHub repository with specific information about your environment and configuration.
✅ Great, thanks for letting us know that this solved your question!