Appify components developed for the Angular platform
- Copy the
essentialsfolder into your project - Import the Appify module into your
app.module.tsfile and include it in your imports.
import { AppifyModule } from '../essentials/appify.module'
...
imports: [
BrowserModule,
AppifyModule
],
- Modify your
angular.jsonfile styles object to add another CSS file
"styles": [
"src/styles.css",
"src/essentials/styles/global.css"
],