next.js Ошибка await is not defined
Primary tabs
Error [ReferenceError]: await is not defined
Если навести в IDE получаем уточнение:
'await' expressions are only allowed within async functions and at the top levels of modules.
Возможное решение
Переключить милдварь на async:
export async function middleware(request: NextRequest) {
Еще что-то связанное: https://stackoverflow.com/questions/4980...
- Log in to post comments
- 104 reads