mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 05:34:40 -05:00
nwaa
This commit is contained in:
parent
c1a77f2076
commit
50475cc654
1 changed files with 2 additions and 2 deletions
|
@ -231,7 +231,7 @@ app.get("/game-hub", function (req, res) {
|
||||||
res.redirect("/css/" + id);
|
res.redirect("/css/" + id);
|
||||||
} else if (id.endsWith(".js")) {
|
} else if (id.endsWith(".js")) {
|
||||||
if (id.endsWith(".bundle.js")) {
|
if (id.endsWith(".bundle.js")) {
|
||||||
const jsFiles = ["app.js", "custom-css.js", "emojis.js", "vjs.min.js"];
|
const jsFiles = ["app.js", "custom-css.js", "emojis.js"];
|
||||||
const combinedContent = jsFiles
|
const combinedContent = jsFiles
|
||||||
.map((fileName) => {
|
.map((fileName) => {
|
||||||
const filePath = path.join(html_location, fileName);
|
const filePath = path.join(html_location, fileName);
|
||||||
|
@ -247,7 +247,7 @@ app.get("/game-hub", function (req, res) {
|
||||||
res.send(
|
res.send(
|
||||||
"// @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-3.0-or-later" +
|
"// @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-3.0-or-later" +
|
||||||
`\n` +
|
`\n` +
|
||||||
`// Includes app.js, emojis.js, vjs.js, and custom-css.js. Source code can be found for these 3 files in https://codeberg.org/Ashley/poketube/src/branch/main/css/` +
|
`// Includes app.js, emojis.js, and custom-css.js. Source code can be found for these 3 files in https://codeberg.org/Ashley/poketube/src/branch/main/css/` +
|
||||||
`\n` +
|
`\n` +
|
||||||
minimizedJs +
|
minimizedJs +
|
||||||
`\n` +
|
`\n` +
|
||||||
|
|
Loading…
Reference in a new issue