Skip to content

Dev Tips

nerdCopter edited this page Nov 5, 2022 · 3 revisions

Some useful dev tips:

Linux

Run debug mode

  • yarn gulp clean-debug ; yarn gulp debug ;
  • right-click the UI and select "Inspect" (Also Ctrl-Shift-I or F12)

Delete yarn cache

  • yarn cache clean

Delete and reinstall node_modules

  • rm -r node_modules ; yarn install

Delete personal EmuConfigurator settings

  • rm -r ~/.config/emuflight-configurator/

Delete local presets cache

  • rm /tmp/user/$(id -u $(whoami))/presets-*.json
Clone this wiki locally