Skip to content

Commit

Permalink
relative
Browse files Browse the repository at this point in the history
  • Loading branch information
jakedowns committed Jan 11, 2024
1 parent 09be083 commit fd38933
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion basic_bg_file_server.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ app.use((req, res, next) => {
next();
});

app.use(express.static(path.resolve('public')));
app.use(express.static(path.resolve('')));

https.createServer({
key: fs.readFileSync(path.resolve('./self-signed-neat.app.key')),
Expand Down
2 changes: 1 addition & 1 deletion public/pixel-mixer.html
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ <h1>Pixel Mixer Demo</h1>
let rand_int_1_thru_17 = Math.floor(Math.random() * 17) + 1;
//let url = `./res/bg_${rand_int_1_thru_17}.png`;
//let url = "./res/download (3).png";
let url = "./res/inspiration/Bsodwindows10.png";
let url = "../res/inspiration/Bsodwindows10.png";
window.baseTexture = textureLoader.load(url);

window.mandlebulbTexture = textureLoader.load(url);
Expand Down

0 comments on commit fd38933

Please sign in to comment.