- Notifications
You must be signed in to change notification settings - Fork581
Open
Labels
Description
I'm trying to folloethis guide to migrate Formly to stand alone, as stated in docs we should replaceFormlyMaterialModule
withwithFormlyMaterial()
in app.config.ts providers
however, I have a package (not app) that generates some custom fields, where app.config.ts not exist
the previous component was
imports: [ FormlyModule, FormlyPrimeNGModule]
should I convert it in every single component to be
imports: [ FormlyForm,],providers: [provideFormlyCore(...)]