caching implemented and a flake tool for logo
This commit is contained in:
@@ -62,7 +62,7 @@
|
||||
}
|
||||
</script>
|
||||
<link href="/static/css/app.css?v=2026-06-16" rel="stylesheet" type="text/css">
|
||||
<script src="/static/vendor/htmx/htmx-1.9.12.min.js"></script>
|
||||
<script defer src="/static/vendor/htmx/htmx-1.9.12.min.js"></script>
|
||||
<!-- Alpine Focus plugin (x-trap / $focus) — must load before Alpine core;
|
||||
required by the Penguin UI keyboard-accessible dropdowns. -->
|
||||
<script defer src="/static/vendor/alpine/alpine-focus-3.14.9.min.js"></script>
|
||||
|
||||
@@ -24,6 +24,10 @@ server:
|
||||
host: http://localhost
|
||||
# Out of the box middleware configuration. to disable middleware you can changed the `enable` field to `false` of comment the middleware block
|
||||
middlewares:
|
||||
# gzip/br compression for text responses (HTML, CSS, JS) — Lighthouse
|
||||
# "Document request latency: No compression applied".
|
||||
compression:
|
||||
enable: true
|
||||
static:
|
||||
enable: true
|
||||
must_exist: true
|
||||
|
||||
@@ -9,6 +9,10 @@ server:
|
||||
binding: "{{ get_env(name="SERVER_BINDING", default="0.0.0.0") }}"
|
||||
host: "{{ get_env(name="APP_HOST") }}"
|
||||
middlewares:
|
||||
# gzip/br compression for text responses (HTML, CSS, JS) — Lighthouse
|
||||
# "Document request latency: No compression applied".
|
||||
compression:
|
||||
enable: true
|
||||
static:
|
||||
enable: true
|
||||
must_exist: true
|
||||
|
||||
Reference in New Issue
Block a user