JVPH
JVPH
You have to import the library in your entry point/main file (before you import your routes) like so: `const express = require('express')` `require('express-async-errors')` `const app = express()` `etc...` Because of...
Are you using Sway? I had the same issue. The problem was that [xdg-desktop-portal-wlr](https://wiki.archlinux.org/title/XDG_Desktop_Portal) needed the XDG_CURRENT_DESKTOP and WAYLAND_DISPLAY environment variables to be set. So the fix was to: -...
You could try ``` $ systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP $ dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=hyprland ```