From 7e7e53720e262aaacb245fcf242e5b6649424a4c Mon Sep 17 00:00:00 2001 From: Korbs Date: Mon, 6 Nov 2023 02:13:15 -0500 Subject: [PATCH] Update name --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 })})