You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are several places where paths reference files inside of node_modules. These paths are brittle, as the packages can change, or the package manager can move things around. The files should be imported through the normal mechanisms instead.
The text was updated successfully, but these errors were encountered:
Ah, right, the login page is just static files, so it needs a known location for the CSS. I think webpack can rewrite the paths in the static files so they point to a built location, as opposed to fully bringing them into the SPA.
There are also places in the client code where modules are imported from paths inside node_modules, which should be cleaned up as well, mostly around USWDS assets.
There are several places where paths reference files inside of
node_modules
. These paths are brittle, as the packages can change, or the package manager can move things around. The files should be imported through the normal mechanisms instead.The text was updated successfully, but these errors were encountered: