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 installed the spinner in my Angular 5 app. It's been installed into node_modules folder
I imported the modeul but when I'm trying to add it to imports I'm getting an error:
Error: "Fetch error: 404 Not Found Instantiating http://localhost:port/ng4-loading-spinner Loading http://localhost:port/app/app.module.js Loading client/main.js"
My app component:
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { HttpModule } from '@angular/http' import { Ng4LoadingSpinnerModule } from 'ng4-loading-spinner'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, FormsModule, HttpModule, ReactiveFormsModule, Ng4LoadingSpinnerModule.forRoot() // Gives an error described above ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I installed the spinner in my Angular 5 app. It's been installed into node_modules folder
I imported the modeul but when I'm trying to add it to imports I'm getting an error:
My app component:
The text was updated successfully, but these errors were encountered: