How to update files of Azure hosted site

There are few steps need to follow to edit and update files of application which are hosted in azure. Follow following steps. Login to azure portal, Click on App Services and Go to App Service Editor (Preview) under the Development Tools. 2. Click on GO . All the files of application will be listed on left side. 3. Click on file that you want to … Continue reading How to update files of Azure hosted site

Create Angular Component if more than one module matches

More than one module matches. Use skip-import option to skip importing the component into the closest module. Command ng g component –skipTests /admin/home –module=app This command will create home component inside admin folder with app module. Continue reading Create Angular Component if more than one module matches