blob: ae3b42e3040c31e1f8bab3ce42aee5b5557d1abf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import {Express} from 'express'
import {AppContext} from '../context.js'
export default function (ctx: AppContext, app: Express) {
return app.get('/.well-known/apple-app-site-association', (req, res) => {
res.json({
appclips: {
apps: ['B3LX46C5HS.xyz.blueskyweb.app.AppClip'],
},
})
})
}
|