mirror of
https://github.com/nexu-io/open-design.git
synced 2026-05-31 19:04:39 +07:00
Fix/projects page/button (#3130)
* fix(docker): fix container startup crash due to missing OD_API_TOKEN
* fix(docker): forward OD_API_TOKEN to fix docker container boot loop
* fix(docker): enforce non-empty OD_API_TOKEN for docker-compose
* fix(deploy): automate OD_API_TOKEN generation in installer and close compose loop
* docs(readme): guide manual deployment users to configure OD_API_TOKEN
* docs(readme): align working directory paths for manual deployment instructions
* docs(readme): align working directory paths for manual deployment instructions
* docs(readme): restore git clone context for first-time users
* fix(web): directly import remixicon.css in layout to fix icon font loading
* fix(web): resolve remixicon font not rendering via public/ directory
RemixIcon icons were blank in Chrome and showed garbled PUA codepoints
in Firefox. The font file was referenced with a relative URL in CSS
loaded through @import, which Turbopack does not resolve.
Fix: copy remixicon.woff2 to public/ and change the @font-face src
to an absolute URL (url("/remixicon.woff2")), so the browser fetches
it directly from the server root without relying on the bundler.
This commit is contained in:
parent
1b1fba165f
commit
68bbcfe9e2
2 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@
|
|||
*/
|
||||
@font-face {
|
||||
font-family: "remixicon";
|
||||
src: url("./remixicon.woff2") format("woff2");
|
||||
src: url("/remixicon.woff2") format("woff2");
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue