I have a project where I build a static web just for diplaying items. I don't have backend system so I just use Angular to display list of items from js. I want user able to update their item from js without re-compiling the angular app.
here is my sample https://stackblitz.com/edit/mockdatatestangular?embed=1&file=src/app/app.component.html
in here I have mockupdata.ts where I store all data that need to be displayed. I want this to be editable / renewable (I mean I can just upload new mockupdata.ts to server without re compile the entire app).
Is it possible to do that ?