File size: 240 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
'use server'
try {
if (process.env.NEXT_RUNTIME !== 'edge') {
require('fs').readFileSync(
require('path').join(process.cwd(), 'data.txt'),
'utf8'
)
}
} catch {}
export async function action() {
return 'action'
}
|