Skip to content

Commit 357a59f

Browse files
committed
Add mechanism for static .well-known files.
1 parent 7e7fb8a commit 357a59f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/create-app.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ function createApp (argv = {}) {
5656
app.use('/common', express.static(path.join(__dirname, '../common')))
5757
routeResolvedFile(app, '/common/js/', 'mashlib/dist/mashlib.min.js')
5858
routeResolvedFile(app, '/common/js/', 'mashlib/dist/mashlib.min.js.map')
59+
app.use('/.well-known', express.static(path.join(__dirname, '../common/well-known')))
5960

6061
// Add CORS proxy
6162
if (argv.proxy) {

0 commit comments

Comments
 (0)