diff --git a/.gitignore b/.gitignore index 6854d68..f01fdf0 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ node_modules _site .DS_Store +.idea/ \ No newline at end of file diff --git a/devMsg.js b/devMsg.js index 4e34750..9db830d 100644 --- a/devMsg.js +++ b/devMsg.js @@ -6,7 +6,7 @@ const fs = require('fs'); // for use when developing fs.readdir(`${__dirname}/src/ebooks`, (err, files) => { files = files.filter(item => !(/(^|\/)\.[^\/\.]/g).test(item)); // ignore hidden files - files = files.map((file) => `http://localhost:8080/ebooks/${file}/cover`); + files = files.map((file) => `http://localhost:8081/ebooks/${file}/cover`); files.unshift('Select any ebook below when contributing:'); if (err) console.log(err);