I am currently developing Modern UI. After I edit a page each time, I need to publish the project to see the effect. If I find something wrong, I have to modify it and republish. My local computer configuration is quite good (I9 + 32GB), but I still feel that publishing every time is a waste of time. Is there a quick preview method available?
Solved
Is there a quick preview method for Modern UI development 2026r1?
Best answer by Naveen Boga
Inside Customization Projects:
- every UI change generally requires Publish
- there is no built-in hot reload
- no npm execution support
- no partial frontend build option
- So the editor itself is slower for Modern UI development.
To Use npm build-dev (Mostly developers follow the below approach)
You need:
- Acumatica Modern UI source setup
- Node.js installed
- frontend project files
- npm dependencies installed
Then you can:
- build only specific screens
- use watch mode
- reduce rebuild time significantly
Example:
Command: npm run build-dev -- --env screenIds=SO301000
This command is used in Acumatica ERP Modern UI development to build only specific screens instead of rebuilding the entire frontend.
This is actually one of the best ways to speed up Modern UI customization development.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.