File size: 565 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { NextResponse } from 'next/server'
import { ImageResponse } from 'next/og'
import fs from 'fs'
import path from 'path'

export const config = {
  runtime: 'nodejs',
}

export async function middleware(req) {
  console.log('middleware', req.url)
  console.log(
    'env',
    await fs.promises.readFile(path.join(process.cwd(), '.env'))
  )

  if (req.nextUrl.pathname === '/a-non-existent-page/to-test-with-middleware') {
    return new ImageResponse(<div>Hello world</div>, {
      width: 1200,
      height: 600,
    })
  }
  return NextResponse.next()
}