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
{{ message }}
This repository was archived by the owner on Feb 19, 2020. It is now read-only.
some-blaze-component imports ComponentA via a relative import (import ComponentA from '../components/ComponentA') which works fine.
The issue is when trying to import ComponentB from ComponentA using import ComponentB from './ComponentB'. I get an error in the browser stating Cannot find module '/ndm_implementation/ui/components/ComponentB'.
Inside project_path\.meteor\local\build\programs\web.browser\packages\ndm_implementation.js if I change that reference from '/ndm_implementation/ui/components/ComponentB' to ./ComponentB' and do a hard reaload it works.