Skip to content

Commit 551097e

Browse files
authored
fix issue #240 (#242)
1 parent 014ed46 commit 551097e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/server/server.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,13 @@ app.use(
254254
)
255255
);
256256

257+
app.use(
258+
mount(
259+
'/.well-known',
260+
staticCache(path.join(__dirname, '../../.well-known'), cacheOpts)
261+
)
262+
);
263+
257264
app.use(
258265
mount('/robots.txt', function*() {
259266
this.set('Cache-Control', 'public, max-age=86400000');

0 commit comments

Comments
 (0)