Allow web manifest to be downloaded from assets
This commit is contained in:
parent
78e3082139
commit
b0b62cc50d
@ -24,7 +24,7 @@ class IonicUnit extends Unit {
|
|||||||
app.express.use('/i', [
|
app.express.use('/i', [
|
||||||
this.canon.get('middleware::auth:UserOnly'),
|
this.canon.get('middleware::auth:UserOnly'),
|
||||||
(req, res, next) => {
|
(req, res, next) => {
|
||||||
const allowed_extensions = ['.html', '.js', '.css', '.svg', '.ttf', '.jpg', '.png', '.jpeg']
|
const allowed_extensions = ['.html', '.js', '.css', '.svg', '.ttf', '.jpg', '.png', '.jpeg', '.webmanifest']
|
||||||
for ( const k1 in allowed_extensions ) {
|
for ( const k1 in allowed_extensions ) {
|
||||||
if ( req.path.endsWith(allowed_extensions[k1]) ) return next()
|
if ( req.path.endsWith(allowed_extensions[k1]) ) return next()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user