r/o

README: set image widths. e056551f parent 92476a01

authored by Asherah Connor

1
import Config
2
3
# Note we also include the path to a cache manifest
4
# containing the digested version of static files. This
5
# manifest is generated by the `mix assets.deploy` task,
6
# which you should run after static files are built and
7
# before starting your production server.
8
config :pipa, PipaWeb.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json"
9
10
# Configures Swoosh API Client
11
config :swoosh, api_client: Swoosh.ApiClient.Req
12
13
# Disable Swoosh Local Memory Storage
14
config :swoosh, local: false
15
16
# Do not print debug messages in production
17
config :logger, level: :info
18
19
config :mdex, MDEx.Native,
20
crate: :comrak_nif,
21
skip_compilation?: true
22
23
config :autumn, Autumn.Native,
24
crate: :autumnus_nif,
25
skip_compilation?: true
26