Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.41 KB

edge-dynamic-code-evaluation.md

File metadata and controls

34 lines (24 loc) · 1.41 KB

Dynamic code evaluation is not available in Middlewares or Edge API Routes

Why This Error Occurred

eval(), new Function() or compiling WASM binaries dynamically is not allowed in Middlewares or Edge API Routes. Specifically, the following APIs are not supported:

  • eval()
  • new Function()
  • WebAssembly.compile
  • WebAssembly.instantiate with a buffer parameter

Possible Ways to Fix It

You can bundle your WASM binaries using import:

import { NextResponse } from 'next/server'
import squareWasm from './square.wasm?module'

export default async function middleware() {
  const m = await WebAssembly.instantiate(squareWasm)
  const answer = m.exports.square(9)

  const response = NextResponse.next()
  response.headers.set('x-square', answer.toString())
  return response
}

In rare cases, your code could contain (or import) some dynamic code evaluation statements which can not be reached at runtime and which can not be removed by threeshaking. You can relax the check to allow specific files with your Middleware or Edge API Route exported configuration.

Be warned that if these statements are executed on the Edge, they will throw and fail your route.