rsnext/test/e2e/app-dir/asset-prefix-with-basepath/next.config.js
Maikel 4efe14238b
fix: bundle fetching with asset prefix (#63627)
Closes: https://github.com/vercel/next.js/issues/63623

When a relative assetPrefix was set (e.g. `/custom-asset-prefix`),
bundle fetching would always return a 404 as the assetPrefix was not
removed from filesystem path

---------

Co-authored-by: JJ Kasper <jj@jjsweb.site>
2024-03-29 16:38:24 -07:00

4 lines
93 B
JavaScript

module.exports = {
assetPrefix: '/custom-asset-prefix',
basePath: '/custom-base-path',
}