Handle empty terms / tags.
[akkoma] / lib / pleroma / web / endpoint.ex
index 6af42a68526cb5ddceca063a225215c2c8a9dd86..a1b4108cd6e6f99fc2a3cf8abffc70889b83babc 100644 (file)
@@ -9,6 +9,9 @@ defmodule Pleroma.Web.Endpoint do
   # when deploying your static files in production.
   plug Plug.Static,
     at: "/media", from: "uploads", gzip: false
+  plug Plug.Static,
+    at: "/", from: :pleroma,
+    only: ~w(index.html static finmoji emoji)
 
   # Code reloading can be explicitly enabled under the
   # :code_reloader configuration of your endpoint.