Closed
Description
In https://github.com/cypress-io/netlify-plugin-cypress/blob/master/src/index.js#L9
function serveFolder (folder, port) {
const server = ecstatic({
root: folder
})
return http.createServer(server).listen(port)
}
The ecstatic
server is deprecated jfhbrook/node-ecstatic#259
It would also be nice if the server had an option to redirect unknown URLs to /
to have an option to handle client-side routing as a fallback (#57, #51)