Hi all,
after building and uploading to the server index.html did not load the css in the asset folder.
I solved it by manually editing the index.html and fixing the absolute path of the css, as in
<link rel="stylesheet" href="/assets/index.7ae1e269.css" />
<link rel="stylesheet" href="/assets/index.12c5fa68.css" />
Becoming
<link rel="stylesheet" href="assets/index.7ae1e269.css" />
<link rel="stylesheet" href="assets/index.12c5fa68.css" />
This is undoable at every update though, I'd recommend fixing it
Thank you!
Hi all,
after building and uploading to the server index.html did not load the css in the asset folder.
I solved it by manually editing the
index.htmland fixing the absolute path of the css, as inBecoming
This is undoable at every update though, I'd recommend fixing it
Thank you!