Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ experimental/**/*.db
.next
.vscode/
.nuxt
.output
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

Nuxt build output ignore — consider clarifying it’s a directory

Nitpick: adding a trailing slash makes it explicit we’re ignoring a directory.

Apply this diff:

-.output
+.output/
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
.output
.output/
🤖 Prompt for AI Agents
In .gitignore around line 30, the entry " .output " is ambiguous; update the
line to explicitly ignore the Nuxt build output directory by appending a
trailing slash (i.e., change the entry to ".output/") so the ignore rule clearly
targets a directory rather than a file.

dev.db
*.env*
!.env.example
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ The following examples are fullstack examples using the new [`prisma-client`](ht
| [`nextjs-starter-turbopack`](https://github.com/prisma/prisma-examples/tree/latest/generator-prisma-client/nextjs-starter-turbopack) | A Next.js 15 starter powered by Turbopack (alpha) for bundling, running on Node.js. |
| [`neextjs-starter-webpack-monorepo`](https://github.com/prisma/prisma-examples/tree/latest/generator-prisma-client/neextjs-starter-webpack-monorepo) | A monorepo-based Next.js 15 starter using Webpack 5 and Node.js, managed with `pnpm`. |
| [`nextjs-starter-webpack-with-middleware`](https://github.com/prisma/prisma-examples/tree/latest/generator-prisma-client/nextjs-starter-webpack-with-middleware) | A Next.js 15 starter with Webpack 5, running on Node.js for main pages and Vercel Edge Light for middleware. |
| [`nuxt3-starter-nodejs`](https://github.com/prisma/prisma-examples/tree/latest/generator-prisma-client/nuxt3-starter-nodejs) | A Nuxt 3 starter that runs on Node.js. |


## Prisma Accelerate
Expand Down
1 change: 0 additions & 1 deletion orm/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"nuxt": "3.17.6"
},
"devDependencies": {
"@babel/eslint-parser": "7.27.5",
"@nuxtjs/eslint-config": "12.0.0",
"@nuxtjs/eslint-module": "4.1.0",
"@babel/eslint-parser": "7.28.0",
Expand Down