@@ -8,11 +8,21 @@ const plugins = require('./connectors/plugins')
8
8
const distPath = path . resolve ( __dirname , '../dist' )
9
9
const publicPath = path . resolve ( __dirname , '../ui-public' )
10
10
11
+ const CACHE_CONTROL = 'no-store, no-cache, must-revalidate, private'
12
+
11
13
module . exports = app => {
12
- app . use ( express . static ( distPath , { maxAge : 0 } ) )
13
- app . use ( '/public' , express . static ( publicPath , { maxAge : 0 } ) )
14
+ app . use ( express . static ( distPath , { setHeaders } ) )
15
+ app . use ( '/public' , express . static ( publicPath , { setHeaders } ) )
14
16
app . use ( '/_plugin/:id/*' , plugins . serve )
15
17
app . use ( '/_plugin-logo/:id' , plugins . serveLogo )
16
18
app . use ( '/_addon/:id/*' , clientAddons . serve )
17
- app . use ( fallback ( path . join ( distPath , 'index.html' ) , { maxAge : 0 } ) )
19
+ app . use ( fallback ( path . join ( distPath , 'index.html' ) , {
20
+ headers : {
21
+ 'Cache-Control' : CACHE_CONTROL
22
+ }
23
+ } ) )
24
+ }
25
+
26
+ function setHeaders ( res , path , stat ) {
27
+ res . set ( 'Cache-Control' , CACHE_CONTROL )
18
28
}
0 commit comments