Skip to content

Commit

Permalink
Revert changes to runtime for chat api
Browse files Browse the repository at this point in the history
  • Loading branch information
heatlikeheatwave committed Jul 26, 2024
1 parent ff93eea commit fb0955c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/api/chat/feedback.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { type NextRequest, type NextFetchEvent } from 'next/server'
import { z } from 'zod'

export const config = {
runtime: 'edge',
runtime: 'experimental-edge',
}

// POST body payload
Expand Down
2 changes: 1 addition & 1 deletion src/pages/api/chat/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { type NextRequest, type NextFetchEvent } from 'next/server'
import { z } from 'zod'

export const config = {
runtime: 'edge',
runtime: 'experimental-edge',
}

// POST body payload
Expand Down

0 comments on commit fb0955c

Please sign in to comment.