Cannot get / error

Hello Glitch Support and Glitch Forum Browsers alike.

My name is WarpWing and I have had a problem with my site.

Astrogenstudios.glitch.me which has a “cannot get /” error, Help a dev out ?

-WarpWing

You need to add a route pointing to ‘/’ in your app like

app.get('/', (request, response) => {
return response.send('Ping!');
});
2 Likes