I migrated my loopback3 application to loopback4, as a last step of migration, I migrated loopback3 models, but when I change my model variables in loopback4, migrated application does not read that changes, It continues to read models from loopback3. How can I fix this issue?
Asked
Active
Viewed 33 times
1 Answers
0
Assuming you have rebuilt the project using npm run build
and found out the new changes are not reflected, you can try npm run clean
before building it again.

Diana
- 311
- 1
- 3
-
I added those properties in my `npm start` script, when I write `npm start` it cleans project, it takes rebuild afterwards, it starts application, so I am receiving rebuilded project on my localhost. – Alparslan Yılmaz Mar 04 '21 at 14:25