/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
errors/invalid-assetprefix.mdx
19 строк
317 B
Delba de Oliveira
docs: Migrate error messages to MDX and App Router. (#52038)
05 июл 2023, 16:11
Не верифицирован
05 июл 2023, 16:11
44d1a1c
Код
Авторство
О чём код?
--- title: 'Invalid `assetPrefix`' --- ## Why This Error Occurred The value of `assetPrefix` in `next.config.js` is set to something that is not a `string`. ## Possible Ways to Fix It Ensure that `assetPrefix` is a `string`. Example: ```js filename="next.config.js" module.exports = { assetPrefix: '/', } ```