aboutsummaryrefslogtreecommitdiff
path: root/docs/configuration
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2020-08-15 07:42:10 +0000
committerrinpatch <rinpatch@sdf.org>2020-08-15 07:42:10 +0000
commitec242b470654e5e66e3d3a36e8d7563e15b08016 (patch)
treedc8fa2ed388168f290475c1da2bed8fa11a14867 /docs/configuration
parent57a00e22c46e56e2ecd87c4166644e899555bf5d (diff)
parent4fcf272717bf2d8f582720de69fa9e50cab1b66a (diff)
downloadpleroma-ec242b470654e5e66e3d3a36e8d7563e15b08016.tar.gz
Merge branch 'fix/docs-tabs' into 'develop'
Docs: Fix the way tabs are declared Closes #2045 See merge request pleroma/pleroma!2892
Diffstat (limited to 'docs/configuration')
-rw-r--r--docs/configuration/static_dir.md20
1 files changed, 12 insertions, 8 deletions
diff --git a/docs/configuration/static_dir.md b/docs/configuration/static_dir.md
index 58703e3be..8ac07b725 100644
--- a/docs/configuration/static_dir.md
+++ b/docs/configuration/static_dir.md
@@ -4,15 +4,19 @@ Static frontend files are shipped with pleroma. If you want to overwrite or upda
You can find the location of the static directory in the [configuration](../cheatsheet/#instance).
-```elixir tab="OTP"
-config :pleroma, :instance,
- static_dir: "/var/lib/pleroma/static/",
-```
+=== "OTP"
-```elixir tab="From Source"
-config :pleroma, :instance,
- static_dir: "instance/static/",
-```
+ ```elixir
+ config :pleroma, :instance,
+ static_dir: "/var/lib/pleroma/static/"
+ ```
+
+=== "From Source"
+
+ ```elixir
+ config :pleroma, :instance,
+ static_dir: "instance/static/"
+ ```
Alternatively, you can overwrite this value in your configuration to use a different static instance directory.