next.js/test/e2e/import-conditions/app/edge-route/route.tsx
route.tsx14 lines448 B
import * as react from 'library-with-exports/react'
import * as serverFavoringBrowser from 'library-with-exports/server-favoring-browser'
import * as serverFavoringEdge from 'library-with-exports/server-favoring-edge'

export const runtime = 'edge'

export function GET() {
  return Response.json({
    react: react.condition,
    serverFavoringBrowser: serverFavoringBrowser.condition,
    serverFavoringEdge: serverFavoringEdge.condition,
  })
}
Quest for Codev2.0.0
/
SIGN IN