my siteUrl is
https://foo.gitlab.io, my assetsPrefix is /some/path/indeed . when i publish, the images are correctly resolved from foo.gitlab.io/some/path/indeed/ , but on my local published site, the assets are not available from that path, they are only available from localhost:3000/ .
should i make my siteUrl
https://foo.gitlab.io/some/path/indeed ?
also, on the local site the favicon resolves, but the logo does not. the reverse is true for the published site (no favicon, but logo resolves). the paths are the siteFaviconPath is set to notes/assets/images/favicon.ico and the logoPath is set to notes/assets/images/logo.svg
they resolve to 404 -> localhost:3000/some/path/indeed/assets/logo.svg (weird that it doesnt include /images), and 404 ->
https://foo.gitlab.io/favicon.ico (weird that it neither respects siteFaviconPath nor assetsPrefix, but maybe it just never found it in the first place to place it here in the next.js bundle).