bro-framework 3.0.5 → 3.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/next.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bro-framework",
3
- "version": "3.0.5",
3
+ "version": "3.0.6",
4
4
  "description": "The No-BS Backend Framework for Node.js",
5
5
  "repository": {
6
6
  "type": "git",
package/src/next.js CHANGED
@@ -236,7 +236,7 @@ export function createBro(globalConfig = {}) {
236
236
  console.error('[bro.js/next] Unhandled Error:', error);
237
237
  return NextResponse.json(
238
238
  {
239
- type: 'https://brojs.dev/errors/internal_server_error',
239
+ type: 'errors/internal_server_error',
240
240
  title: 'Internal Server Error',
241
241
  status: 500,
242
242
  instance: req.url,