Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
dotCMS/core#19902 Invalidate cache bringing jsp (#1581)
Browse files Browse the repository at this point in the history
* dotCMS/core#19902 Bring jsp into the build

* update spacing

Co-authored-by: Will Ezell <[email protected]>
  • Loading branch information
fmontes and wezell authored Feb 8, 2021
1 parent 029984a commit 35bd8ec
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
"glob": "**/*",
"input": "./node_modules/ngx-monaco-editor/assets/monaco",
"output": "./assets/monaco/"
},
{
"glob": "index.jsp",
"input": "src/tomcat",
"output": "./"
}
],
"styles": [
Expand Down
5 changes: 5 additions & 0 deletions src/tomcat/index.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<%
response.setHeader("Cache-Control", "no-cache, no-store, must-revalidate");
response.setHeader("Pragma", "no-cache");
response.setDateHeader("Expires", 0);
%><%@ include file = "index.html" %>

0 comments on commit 35bd8ec

Please sign in to comment.