fix(dash): add favicon to go script

This commit is contained in:
spiral 2022-12-05 09:52:51 +00:00
parent 7f37f8b353
commit fdf118e301
No known key found for this signature in database
GPG Key ID: 244A11E4B0BCF40E
2 changed files with 5 additions and 2 deletions

View File

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="./myriad.png" />
<link rel="icon" href="/myriad.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PluralKit | home</title>
<!-- extra data -->

View File

@ -61,7 +61,10 @@ func notFoundHandler(rw http.ResponseWriter, r *http.Request) {
var err error
// lol
if strings.HasSuffix(r.URL.Path, ".js") {
if r.URL.Path == "/myriad.png" {
data, err = fs.ReadFile("dist/myriad.png")
rw.Header().Set("content-type", "image/png")
} else if strings.HasSuffix(r.URL.Path, ".js") {
data, err = fs.ReadFile("dist" + r.URL.Path)
rw.Header().Set("content-type", "application/javascript")
} else if strings.HasSuffix(r.URL.Path, ".css") {