diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-12-12 10:27:46 +0000 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-12-12 10:27:46 +0000 |
| commit | 33fd4648ae793cb2286ecb2c0b1d1dc92ddcccb4 (patch) | |
| tree | 34795d646e5d371f561ae42134f0d1f16676b5f3 | |
| parent | merge: Fix: scrolling alt text using a mouse (!810) (diff) | |
| download | sharkey-33fd4648ae793cb2286ecb2c0b1d1dc92ddcccb4.tar.gz sharkey-33fd4648ae793cb2286ecb2c0b1d1dc92ddcccb4.tar.bz2 sharkey-33fd4648ae793cb2286ecb2c0b1d1dc92ddcccb4.zip | |
fix icons in dev mode
running `pnpm dev` would not show any of our icons
this fixes it well enough
| -rw-r--r-- | packages/frontend-embed/src/index.html | 2 | ||||
| -rw-r--r-- | packages/frontend/src/index.html | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/packages/frontend-embed/src/index.html b/packages/frontend-embed/src/index.html index 55be2f4ec1..d94ada5ea8 100644 --- a/packages/frontend-embed/src/index.html +++ b/packages/frontend-embed/src/index.html @@ -27,6 +27,8 @@ /> <meta property="og:site_name" content="[DEV BUILD] Sharkey" /> <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel='stylesheet' href='/assets/phosphor-icons/bold/style.css'> + <link rel='stylesheet' href='/static-assets/fonts/sharkey-icons/style.css'> </head> <body> diff --git a/packages/frontend/src/index.html b/packages/frontend/src/index.html index c03902f505..0597962ab6 100644 --- a/packages/frontend/src/index.html +++ b/packages/frontend/src/index.html @@ -28,6 +28,8 @@ <meta property="og:site_name" content="[DEV BUILD] Misskey" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color-orig" content="#86b300"> + <link rel='stylesheet' href='/assets/phosphor-icons/bold/style.css'> + <link rel='stylesheet' href='/static-assets/fonts/sharkey-icons/style.css'> </head> <body> |