p5.js sketch does not require a canvas, explicitly call the noCanvas() function to stop the p5.js library from creating a canvas at the start of the program.function setup() {
// No canvas element will be created for this p5.js sketch
noCanvas();
}