Skip to content

Commit

Permalink
chore(Stackblitz): Fix package not found error on stackblitz
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHabenicht committed Oct 23, 2018
1 parent eff161d commit 468613d
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@ import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';
import { NgxVcardModule } from 'ngx-vcard';
// ATTENTION: This is for development only!
// For production / use as package use this line:
// import { NgxVcardModule } from 'ngx-vcard';
import { NgxVcardModule } from 'projects/ngx-vcard/src/lib/ngx-vcard.module';

@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NgxVcardModule
],
declarations: [AppComponent],
imports: [BrowserModule, NgxVcardModule],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
export class AppModule {}

0 comments on commit 468613d

Please sign in to comment.