mirror of
https://github.com/janishutz/MusicPlayerV2.git
synced 2025-11-25 13:04:23 +00:00
lots of progress on apple-music integration
This commit is contained in:
@@ -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' ) );
|
||||
} );
|
||||
}
|
||||
Reference in New Issue
Block a user