Hey i want know if anybody know how to show interface of illenium appearance in the browser for edit it bcs when i do npm run dev its show blank interface…
Hey dude! The reason you’re getting a blank screen when running npm run dev for illenium-appearance-source is because the UI is trying to call FiveM native functions like fetchNui or window.invokeNative, and these don’t exist in a normal browser. That’s why nothing shows up. Try my suggestion first
First Step
Run npm run build
Put the dist/ folder inside your illenium-appearance resource
Start it in your server and open the UI in FiveM
Everything will work normally inside the game
Second Step
You need to manually add mock data in the code to simulate FiveM responses
Example:
if (!window.fetchNui) {
setPlayerModel("mp_m_freemode_01"); // fake data for testing
}