Configuration
Paths configuration
Learn how to configure the paths of your app.
The paths configuration is set at apps/mobile/config/paths.ts
. This configuration stores all the paths that you'll be using in your application. It is a convenient way to store them in a central place rather than scatter them in the codebase using magic strings.
It is unlikely you'll need to change this unless you're heavily editing the codebase.
Fully type-safe
By declaring the paths as constants, we can use them safely throughout the codebase. There is no risk of misspelling or using magic strings.
Last updated on