Skip to content

Commit eb9a2cc

Browse files
committed
added no cache headers
1 parent 3031da1 commit eb9a2cc

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [3.1.9] - 2023-10-31
1111

12+
- [playground-quarkus] added no cache headers
13+
1214
### Added
1315

1416
- init handler with exception suppression

fj-doc-playground-quarkus/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@
4848
<groupId>io.quarkus</groupId>
4949
<artifactId>quarkus-arc</artifactId>
5050
</dependency>
51+
<dependency>
52+
<groupId>io.quarkus</groupId>
53+
<artifactId>quarkus-webjars-locator</artifactId>
54+
</dependency>
5155
<dependency>
5256
<groupId>io.quarkus</groupId>
5357
<artifactId>quarkus-junit5</artifactId>

fj-doc-playground-quarkus/src/main/resources/application.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,16 @@ quarkus:
22
http:
33
port: 8080
44
host: 0.0.0.0
5+
6+
header:
7+
"X-Content-Type-Options":
8+
value: nosniff
9+
Pragma:
10+
value: no-cache
11+
Cache-Control:
12+
value: no-cache
13+
514
resteasy-reactive:
615
path: /fj-doc-playground/api
16+
17+

0 commit comments

Comments
 (0)