We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have problem importing module in my angular 4 project. Will there be a migration soon? Thanks a lot!
The text was updated successfully, but these errors were encountered:
I am not sure what's issue you are facing. I have faced following issue:
ERROR in Error: GaugesModule is not an NgModule
The issue is in following line, which is mentioned in doc: import {GaugesModule} from 'ng-canvas-gauges/lib';
import {GaugesModule} from 'ng-canvas-gauges/lib';
instead of that we have to use following: import {GaugesModule} from 'ng-canvas-gauges/src';
import {GaugesModule} from 'ng-canvas-gauges/src';
bcoz @NgModule tag is available in "index.ts" which is inside "src" folder and not in the "lib" folder.
Sorry, something went wrong.
No branches or pull requests
I have problem importing module in my angular 4 project. Will there be a migration soon?
Thanks a lot!
The text was updated successfully, but these errors were encountered: