lots of progress on apple-music integration

This commit is contained in:
2023-11-15 20:44:17 +01:00
parent 2b3af0de24
commit e9195d29b2
8 changed files with 615 additions and 4 deletions

View File

@@ -17,4 +17,16 @@ module.exports = ( app ) => {
app.get( '/apple-music/helpers/:file', ( req, res ) => {
res.sendFile( path.join( __dirname + '/client/appleMusic/' + req.params.file ) );
} );
app.get( '/icon-font.css', ( req, res ) => {
res.sendFile( path.join( __dirname + '/client/icon-font.css' ) );
} );
app.get( '/iconFont.woff2', ( req, res ) => {
res.sendFile( path.join( __dirname + '/client/iconFont.woff2' ) );
} );
app.get( '/logo.png', ( req, res ) => {
res.sendFile( path.join( __dirname + '/client/logo.png' ) );
} );
}