Description
I recently installed ngx-view3d in my Angular project, but it doesn't seem to be working correctly. After following the installation instructions, I encountered several errors that prevent the module from functioning as expected.
Steps to check or reproduce
Install ngx-view3d using npm:
sh
npm install @egjs/ngx-view3d
Import NgxView3DModule in app.module.ts:
typescript
import { NgxView3DModule } from '@egjs/ngx-view3d';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NgxView3DModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }