I would like to use different index.html
for my client.
I would like to have a /backend
with a index.html and different views (working)
- I would like to have a
/
where I want to implement some forms for the user (frontend) and use anotherindex.html
I tried a lot of different things but I dont get it working.
I idea was to use something like this on my server side:
app.use(express.static(__dirname+'/client'));
app.use(express.static(__dirname+'/backend'));
but thats not working
Code is here: https://github.com/eftz/groundlevel