diff options
author | href <href@random.sh> | 2019-02-01 11:34:41 +0100 |
---|---|---|
committer | href <href@random.sh> | 2019-02-01 11:34:41 +0100 |
commit | fa5ec765d9c6184027ba1e4371e9a6f863c3f5db (patch) | |
tree | 2f9d4b6ed995a0062a710f0781ccec6e53c7b941 /lib | |
parent | b3b0855456a92351667a50c8ea77f328bded76ca (diff) | |
download | pleroma-fa5ec765d9c6184027ba1e4371e9a6f863c3f5db.tar.gz |
Serve sw-pleroma.js properly
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/plugs/instance_static.ex | 2 | ||||
-rw-r--r-- | lib/pleroma/web/endpoint.ex | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/plugs/instance_static.ex b/lib/pleroma/plugs/instance_static.ex index af2f6f331..11f108de7 100644 --- a/lib/pleroma/plugs/instance_static.ex +++ b/lib/pleroma/plugs/instance_static.ex @@ -21,7 +21,7 @@ defmodule Pleroma.Plugs.InstanceStatic do end end - @only ~w(index.html static emoji packs sounds images instance favicon.png) + @only ~w(index.html static emoji packs sounds images instance favicon.png sw.js sw-pleroma.js) def init(opts) do opts diff --git a/lib/pleroma/web/endpoint.ex b/lib/pleroma/web/endpoint.ex index 0b4ce9cc4..2b156fdfd 100644 --- a/lib/pleroma/web/endpoint.ex +++ b/lib/pleroma/web/endpoint.ex @@ -25,7 +25,7 @@ defmodule Pleroma.Web.Endpoint do at: "/", from: :pleroma, only: - ~w(index.html static finmoji emoji packs sounds images instance sw.js favicon.png schemas doc) + ~w(index.html static finmoji emoji packs sounds images instance sw.js sw-pleroma.js favicon.png schemas doc) ) # Code reloading can be explicitly enabled under the |