express
express copied to clipboard
How to serve symlinked static file
Hi, I'm using app.use(`/${STATIC_PATH}`, express.static(LOCAL_ROOT_DIR))
to serve static file and it works quite well.
However, if the static file is symlinked, it return 404 error.
Is there a way to enable symlinked file via static files in express?