This page is part of the App Framework Documentation
The following points should be checked for trouble shooting:
- Cache is reset (could be done with
npm run reset) - No interferences with other files
- Only absolute paths used
- process.env allways considered as object with strings (
process.env.ANY === 'true') - All
require()commands contain only strings and/orprocess.env[...]as variable - Values from
window.localStorageare parsed withJSON.parse()before usage
Let us know if you have points to add.
Debug mode could be enabled with debug: true in the app config file. In code, whenever env.debug(...) is called, the input will be logged to debug.log file in the project folder.