Skip to content

Commit 8c07a3d

Browse files
committed
Enable caching for .well-known
1 parent d25239f commit 8c07a3d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/server.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,8 @@ app.get([
246246
'*/images/*',
247247
// Our sw.js is just a stub; if we actually used it then we would want to not list it here
248248
'*/sw.js',
249-
'*/robots.txt'
249+
'*/robots.txt',
250+
'*/.well-known/*',
250251
], (req, res, next) => {
251252
res.header('Cache-Control', 'public, max-age=604800, immutable');
252253
next();

0 commit comments

Comments
 (0)