This repository has been archived by the owner on Mar 11, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 54
Angular 5 #53
Comments
I'm also facing same issue.Can anyone found any solution for this?? |
Same issue with Angular6, any clue ? |
with angular 5 |
Same with Angular 5 here |
Anybody know how fix it? |
Try this solution : #31 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello I want to integrate nix-quill-editor to my angular 5 project, and I import the module to my app.module.ts, the browser has a error which is
Error: Unexpected value 'undefined' imported by the module 'AppModule'
The code is
`import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { QuillEditorModule } from 'ngx-quill-editor';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
QuillEditorModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }`
Anyone knows the reason? Thank you.
The text was updated successfully, but these errors were encountered: