summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/fuse.js2
-rw-r--r--ui/src/index.html2
2 files changed, 3 insertions, 1 deletions
diff --git a/ui/fuse.js b/ui/fuse.js
index 0fdf9a42..26ea7da7 100644
--- a/ui/fuse.js
+++ b/ui/fuse.js
@@ -45,7 +45,7 @@ Sparky.task('config', _ => {
// Sparky.task('version', _ => setVersion());
Sparky.task('clean', _ => Sparky.src('dist/').clean('dist/'));
Sparky.task('env', _ => (isProduction = true));
-Sparky.task('copy-assets', () => Sparky.src('assets/*.svg').dest('dist/'));
+Sparky.task('copy-assets', () => Sparky.src('assets/*.*').dest('dist/'));
Sparky.task('dev', ['clean', 'config', 'copy-assets'], _ => {
fuse.dev();
app.hmr().watch();
diff --git a/ui/src/index.html b/ui/src/index.html
index efa5b969..4aaa86b5 100644
--- a/ui/src/index.html
+++ b/ui/src/index.html
@@ -5,6 +5,8 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" type="image/svg+xml" href="/static/assets/favicon.svg" />
+ <link rel="apple-touch-icon" href="/static/assets/apple-touch-icon.png" />
+
<title>Lemmy</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/balloon-css/0.5.0/balloon.min.css">