diff --git a/README.md b/README.md index 2000940..7cd3507 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,8 @@ npm install plyx-player ### HTML5 Add the stylesheet and script: ```html - - + + ``` Also add the Font Awesome that the Pylx uses: @@ -50,7 +50,7 @@ ___ ### Express Route the files required for Pylx Player to work in Express (Tested with PokeTube): ``` -const PylxDirectory = "./node_modules/@sudovanilla/plyx-player" +const PylxDirectory = "./node_modules/plyx-player" module.exports = function (app, config, renderTemplate) { app.get("/player/index.js", function (req, res) {res.sendFile("/src/index.js", { root: PylxDirectory })}) app.get("/player/index.css", function (req, res) {res.sendFile("/src/styles/app.css", { root: PylxDirectory })})