This is a NextJS starter in Firebase Studio.
To get started, take a look at src/app/page.tsx.
If you encounter a "Slow filesystem detected" message during development, it indicates that Next.js is being slowed down by the filesystem. Here are some steps you can take to improve performance:
- Move project to a local drive: If your project is located on a network drive, move it to a local drive on your computer.
- Exclude project directory from antivirus: Configure your antivirus software to exclude your project directory from scanning. This can prevent the antivirus from interfering with Next.js's file access.
- Use Turbopack: Turbopack is a faster alternative to Webpack. Make sure Turbopack is enabled in your
next.config.jsfile, and that you are usingnext dev --turbopackto start the server.