File size: 112 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import fs from 'fs'
fs.readFileSync('does-not-exist.txt')
export default function handler() {
return null
}
|
1e92f2d |
1 2 3 4 5 6 7 8 |
import fs from 'fs'
fs.readFileSync('does-not-exist.txt')
export default function handler() {
return null
}
|