BenjaminBrandmeier / angular2-image-gallery

Image Gallery built with Angular 17+, node.js and GraphicsMagick

Home Page:https://oidamo.de/blog/gallery-demo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Angular2ImageGalleryModule

luchusnet opened this issue · comments

When run ng build, "Cannot find name 'Angular2ImageGalleryModule'"

`import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';

import { AppComponent } from './app.component';
import { CoreModule } from './core/core.module';
import { HomeModule } from './home/home.module';
import { StaffModule } from './staff/staff.module';
import { AcademicoModule } from './academico/academico.module';
import { FotogaleriaModule } from './fotogaleria/fotogaleria.module';
import { ContactoModule } from './contacto/contacto.module';

@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
FormsModule,
CoreModule,
HomeModule,
StaffModule,
AcademicoModule,
FotogaleriaModule,
ContactoModule,
Angular2ImageGalleryModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
`

you didn´t import the module in the import section?!