diff --git a/.gitignore b/.gitignore index ff08a24..9f3fd21 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,7 @@ erl_crash.dump # Ignore assets that are produced by build tools. /priv/static/assets/ +/priv/static/chunks/ /priv/static/*.js /priv/static/*.html /priv/static/*.css diff --git a/lib/mound_hunters_web/router.ex b/lib/mound_hunters_web/router.ex index 424cf33..8eea294 100644 --- a/lib/mound_hunters_web/router.ex +++ b/lib/mound_hunters_web/router.ex @@ -65,7 +65,7 @@ defmodule MoundHuntersWeb.Router do if File.exists?(index_path) do conn |> put_resp_header("content-type", "text/html; charset=utf-8") - |> put_resp_header("cache-control", "no-cache") + |> put_resp_header("cache-control", "no-cache, must-revalidate") |> send_file(200, index_path) else send_resp(conn, 404, "Not found") diff --git a/ui/src/components/AboutModal.vue b/ui/src/components/AboutModal.vue new file mode 100644 index 0000000..0d9e6a6 --- /dev/null +++ b/ui/src/components/AboutModal.vue @@ -0,0 +1,358 @@ + + + + + \ No newline at end of file diff --git a/ui/src/components/MapControls.vue b/ui/src/components/MapControls.vue index a346b8b..e0b7c55 100644 --- a/ui/src/components/MapControls.vue +++ b/ui/src/components/MapControls.vue @@ -1,5 +1,13 @@